mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2025-12-27 11:05:22 +09:00
Create recipe-power.lua
This commit is contained in:
157
PHI-EN/prototypes/recipe/recipe-power.lua
Normal file
157
PHI-EN/prototypes/recipe/recipe-power.lua
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
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