Compare commits
3 Commits
12f1304009
...
0.8.0
| Author | SHA1 | Date | |
|---|---|---|---|
| db66713705 | |||
| 0a274afc38 | |||
| 143cb6712b |
@@ -12,7 +12,9 @@ local welcome_messages = {
|
||||
"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",
|
||||
"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 = {
|
||||
@@ -38,7 +40,8 @@ local death_messages = {
|
||||
"missed the MLG",
|
||||
"HAD ZERO SWAG",
|
||||
"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
|
||||
|
||||
22
data.lua
22
data.lua
@@ -48,7 +48,7 @@ data.raw["recipe"]["solar-panel"].ingredients = {
|
||||
--i'm not realistic
|
||||
data.raw["recipe"]["small-electric-pole"].ingredients = {
|
||||
{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
|
||||
@@ -76,3 +76,23 @@ data.raw["recipe"]["bulk-inserter"].ingredients = {
|
||||
{type="item", name="electronic-circuit", amount=10},
|
||||
{type="item", name="iron-gear-wheel", amount=5}
|
||||
}
|
||||
|
||||
data.raw["recipe"]["speed-module"].ingredients = {
|
||||
{type="item", name="electronic-circuit", amount=10},
|
||||
}
|
||||
data.raw["module"]["speed-module"].stack_size = 5
|
||||
|
||||
data.raw["recipe"]["speed-module-2"].ingredients = {
|
||||
{type="item", name="electronic-circuit", amount=20},
|
||||
}
|
||||
data.raw["module"]["speed-module-2"].stack_size = 5
|
||||
|
||||
data.raw["recipe"]["speed-module-3"].ingredients = {
|
||||
{type="item", name="electronic-circuit", amount=40},
|
||||
}
|
||||
data.raw["module"]["speed-module-3"].stack_size = 5
|
||||
|
||||
--balance landfills since Cap2 uses a watery map with lots of water tiles
|
||||
data.raw["recipe"]["landfill"].ingredients = {
|
||||
{type="item", name="stone", amount=25}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user