Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 76f2106a4e | |||
| d3f90d9d62 | |||
| 5e01504683 | |||
| a831ec65fe | |||
| 2cbc48b0ce | |||
| 0836a5566c |
66
data.lua
66
data.lua
@@ -4,13 +4,20 @@ data.raw["recipe"]["electric-furnace"].ingredients = {
|
||||
{type = "item", name = "stone-brick", amount = 10}
|
||||
}
|
||||
|
||||
-- Change Fast Inserter
|
||||
-- Because we can somehow wrangle one plate into an inserter lol. anyway
|
||||
-- Change Inserters
|
||||
data.raw["recipe"]["inserter"].ingredients = {
|
||||
{type = "item", name = "iron-plate", amount = 1}
|
||||
}
|
||||
data.raw["recipe"]["fast-inserter"].ingredients = {
|
||||
{type = "item", name = "iron-plate", amount = 2}
|
||||
}
|
||||
data.raw["recipe"]["inserter"].ingredients = {
|
||||
{type = "item", name = "iron-plate", amount = 1}
|
||||
data.raw["recipe"]["long-handed-inserter"].ingredients = {
|
||||
{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
|
||||
@@ -42,6 +49,9 @@ data.raw["recipe"]["fast-transport-belt"].ingredients = {
|
||||
data.raw["recipe"]["solar-panel"].ingredients = {
|
||||
{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
|
||||
--realistically this would short circut
|
||||
@@ -73,8 +83,7 @@ data.raw["recipe"]["military-science-pack"].ingredients = {
|
||||
}
|
||||
--MUCH cheaper than vanilla, MUCH more expensive than this mod
|
||||
data.raw["recipe"]["bulk-inserter"].ingredients = {
|
||||
{type="item", name="electronic-circuit", amount=10},
|
||||
{type="item", name="iron-gear-wheel", amount=5}
|
||||
{type = "item", name = "iron-plate", amount = 4}
|
||||
}
|
||||
|
||||
data.raw["recipe"]["speed-module"].ingredients = {
|
||||
@@ -92,7 +101,52 @@ data.raw["recipe"]["speed-module-3"].ingredients = {
|
||||
}
|
||||
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}
|
||||
}
|
||||
Reference in New Issue
Block a user