forked from Retro/cap1-mod
30 lines
1.1 KiB
Lua
30 lines
1.1 KiB
Lua
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
|
|
|
|
--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}
|
|
} |