mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2025-12-27 11:05:22 +09:00
Update prototypes.lua
This commit is contained in:
@@ -69,6 +69,164 @@ items = {"accumulator", "solar-panel"}
|
|||||||
for i=1, 2, 1 do
|
for i=1, 2, 1 do
|
||||||
for j=2, 8, 1 do
|
for j=2, 8, 1 do
|
||||||
EE(items[i], j)
|
EE(items[i], j)
|
||||||
ER(items[i], j)
|
-- ER(items[i], j)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
data:extend(
|
||||||
|
{
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk2",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk3",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk2", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk4",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk3", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk5",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk4", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk6",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk5", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk7",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk6", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "solar-panel-mk8",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"solar-panel-mk7", 4}
|
||||||
|
},
|
||||||
|
result = "solar-panel-mk8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk2",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk3",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk2", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk4",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk3", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk5",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk4", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk6",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk5", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk7",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk6", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type = "recipe",
|
||||||
|
name = "accumulator-mk8",
|
||||||
|
energy_required = 5,
|
||||||
|
enabled = "false",
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"accumulator-mk7", 4}
|
||||||
|
},
|
||||||
|
result = "accumulator-mk8"
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user