2 Commits

Author SHA1 Message Date
0a274afc38 Spreading Managed Democracy 2025-12-23 17:13:45 -05:00
143cb6712b Change speed modules and fix a bugged recipe 2025-12-23 17:10:29 -05:00
2 changed files with 14 additions and 3 deletions

View File

@@ -12,7 +12,9 @@ local welcome_messages = {
"ALOONE AT THE EDGE OF THE UNIVERSE, HUMMING A TUNE... FOR MEERLY DREAMING WE WERE SNOW", "ALOONE AT THE EDGE OF THE UNIVERSE, HUMMING A TUNE... FOR MEERLY DREAMING WE WERE SNOW",
"here at capitalism game 2 where we pride ourselves on shenanigans", "here at capitalism game 2 where we pride ourselves on shenanigans",
"we got the entire continent to ourselves", "we got the entire continent to ourselves",
"we got the entire world to ourselves" "we got the entire world to ourselves",
"DIE TERMINID SCUM",
"see exotic new lifeforms"
} }
local death_messages = { local death_messages = {
@@ -38,7 +40,8 @@ local death_messages = {
"missed the MLG", "missed the MLG",
"HAD ZERO SWAG", "HAD ZERO SWAG",
"thought they were him", "thought they were him",
"blamed Microsoft" "blamed Microsoft",
"Faced a Hive Lord and lost"
} }
--Add random welcome messages! If we're modifying the game we might as well do it in STYLE --Add random welcome messages! If we're modifying the game we might as well do it in STYLE

View File

@@ -48,7 +48,7 @@ data.raw["recipe"]["solar-panel"].ingredients = {
--i'm not realistic --i'm not realistic
data.raw["recipe"]["small-electric-pole"].ingredients = { data.raw["recipe"]["small-electric-pole"].ingredients = {
{type="item", name="iron-stick", amount=1}, {type="item", name="iron-stick", amount=1},
{type="item", name="copper-wire", amount=3} {type="item", name="copper-cable", amount=3}
} }
--Make assembly machine 1's cheaper for balance --Make assembly machine 1's cheaper for balance
@@ -75,4 +75,12 @@ data.raw["recipe"]["military-science-pack"].ingredients = {
data.raw["recipe"]["bulk-inserter"].ingredients = { data.raw["recipe"]["bulk-inserter"].ingredients = {
{type="item", name="electronic-circuit", amount=10}, {type="item", name="electronic-circuit", amount=10},
{type="item", name="iron-gear-wheel", amount=5} {type="item", name="iron-gear-wheel", amount=5}
}
data.raw["recipe"]["speed-module-2"].ingredients = {
{type="item", name="electronic-circuit", amount=20},
}
data.raw["recipe"]["speed-module-3"].ingredients = {
{type="item", name="electronic-circuit", amount=40},
} }