9 Commits

3 changed files with 86 additions and 9 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

@@ -4,13 +4,20 @@ data.raw["recipe"]["electric-furnace"].ingredients = {
{type = "item", name = "stone-brick", amount = 10} {type = "item", name = "stone-brick", amount = 10}
} }
-- Change Fast Inserter -- Change Inserters
-- Because we can somehow wrangle one plate into an inserter lol. anyway data.raw["recipe"]["inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 1}
}
data.raw["recipe"]["fast-inserter"].ingredients = { data.raw["recipe"]["fast-inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 2} {type = "item", name = "iron-plate", amount = 2}
} }
data.raw["recipe"]["inserter"].ingredients = { data.raw["recipe"]["long-handed-inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 1} {type = "item", name = "iron-plate", amount = 2},
{type = "item", name = "electronic-circuit", amount = 2}
}
data.raw["recipe"]["fast-long-handed-inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 4},
{type = "item", name = "electronic-circuit", amount = 4}
} }
-- Change Advanced Circuit -- Change Advanced Circuit
@@ -42,13 +49,16 @@ data.raw["recipe"]["fast-transport-belt"].ingredients = {
data.raw["recipe"]["solar-panel"].ingredients = { data.raw["recipe"]["solar-panel"].ingredients = {
{type="item", name="iron-gear-wheel", amount=5} {type="item", name="iron-gear-wheel", amount=5}
} }
data.raw["recipe"]["solar-panel-equipment"].ingredients = {
{type="item", name="iron-gear-wheel", amount=5}
}
--Change electric poles --Change electric poles
--realistically this would short circut --realistically this would short circut
--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
@@ -73,6 +83,70 @@ data.raw["recipe"]["military-science-pack"].ingredients = {
} }
--MUCH cheaper than vanilla, MUCH more expensive than this mod --MUCH cheaper than vanilla, MUCH more expensive than this mod
data.raw["recipe"]["bulk-inserter"].ingredients = { data.raw["recipe"]["bulk-inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 4}
}
data.raw["recipe"]["speed-module"].ingredients = {
{type="item", name="electronic-circuit", amount=10}, {type="item", name="electronic-circuit", amount=10},
{type="item", name="iron-gear-wheel", amount=5} }
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
data.raw["recipe"]["effectivity-module"].ingredients = {
{type="item", name="advanced-circuit", amount=10},
}
data.raw["module"]["effectivity-module"].stack_size = 5
data.raw["recipe"]["effectivity-module-2"].ingredients = {
{type="item", name="advanced-circuit", amount=20},
}
data.raw["module"]["effectivity-module-2"].stack_size = 5
data.raw["recipe"]["effectivity-module-3"].ingredients = {
{type="item", name="advanced-circuit", amount=40},
}
data.raw["module"]["effectivity-module-3"].stack_size = 5
data.raw["recipe"]["productivity-module"].ingredients = {
{type="item", name="processing-unit", amount=10},
}
data.raw["module"]["productivity-module"].stack_size = 5
data.raw["recipe"]["productivity-module-2"].ingredients = {
{type="item", name="processing-unit", amount=20},
}
data.raw["module"]["productivity-module-2"].stack_size = 5
data.raw["recipe"]["productivity-module-3"].ingredients = {
{type="item", name="processing-unit", amount=40},
}
data.raw["module"]["productivity-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}
}
--make personal roboport cheaper
data.raw["recipe"]["personal-roboport-equipment"].ingredients = {
{type="item", name="advanced-circuit", amount=5},
{type="item", name="battery", amount=20},
{type="item", name="iron-gear-wheel", amount=20}
}
--mk.2
data.raw["recipe"]["personal-mk2-equipment"].ingredients = {
{type="item", name="advanced-circuit", amount=10},
{type="item", name="battery", amount=40},
{type="item", name="iron-gear-wheel", amount=40}
}
data.raw["recipe"]["battery-equipment"].ingredients = {
{type = "item", name = "iron-plate", amount = 10}
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "cap2-easymod", "name": "cap2-easymod",
"version": "0.8.0", "version": "0.8.1",
"title": "Capitalism Game 2 Recipes", "title": "Capitalism Game 2 Recipes",
"author": "unfunny", "author": "unfunny",
"factorio_version": "2.0", "factorio_version": "2.0",