Compare commits
3 Commits
a831ec65fe
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 76f2106a4e | |||
| d3f90d9d62 | |||
| 5e01504683 |
48
data.lua
48
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
|
||||
@@ -76,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 = {
|
||||
@@ -95,6 +101,36 @@ 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}
|
||||
|
||||
Reference in New Issue
Block a user