From 015549061ada6a8309f5bbbcd6fc23b40e62a349 Mon Sep 17 00:00:00 2001 From: PHIDIAS <10016767+PHIDIAS0303@users.noreply.github.com> Date: Thu, 1 Dec 2022 00:55:38 +0900 Subject: [PATCH] Create recipe-power.lua --- PHI-EN/prototypes/recipe/recipe-power.lua | 157 ++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 PHI-EN/prototypes/recipe/recipe-power.lua diff --git a/PHI-EN/prototypes/recipe/recipe-power.lua b/PHI-EN/prototypes/recipe/recipe-power.lua new file mode 100644 index 0000000..138a7e6 --- /dev/null +++ b/PHI-EN/prototypes/recipe/recipe-power.lua @@ -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" + } +}) \ No newline at end of file