diff --git a/graphics/icons/electric-boiler.png b/graphics/icons/electric-boiler.png new file mode 100644 index 00000000..ab8ad8dd Binary files /dev/null and b/graphics/icons/electric-boiler.png differ diff --git a/locale/en/locale.cfg b/locale/en/locale.cfg index 0f53478e..fa097574 100644 --- a/locale/en/locale.cfg +++ b/locale/en/locale.cfg @@ -164,6 +164,7 @@ maraxsis-geothermal-sulfur=Geothermal sulfur maraxsis-nutrients-from-tropical-fish=Nutrients from tropical fish maraxsis-fluid-void=Void 100 × __1__ maraxsis-petroleum-gas-cracking=Petroleum gas cracking to heavy oil +maraxsis-electric-boiler=Electric boiler [recipe-description] maraxsis-electricity=Generates more energy based on the quality of salt.\n__1__ diff --git a/prototypes/project-seadragon.lua b/prototypes/project-seadragon.lua index 1ffec645..5704745b 100644 --- a/prototypes/project-seadragon.lua +++ b/prototypes/project-seadragon.lua @@ -23,6 +23,10 @@ data:extend {{ type = "unlock-recipe", recipe = "maraxsis-petroleum-gas-cracking" }, + { + type = "unlock-recipe", + recipe = "maraxsis-electric-boiler" + }, }, prerequisites = {"hydraulic-science-pack", "coal-liquefaction"}, unit = { diff --git a/prototypes/recipes.lua b/prototypes/recipes.lua index 19ea58fe..a1565d97 100644 --- a/prototypes/recipes.lua +++ b/prototypes/recipes.lua @@ -42,4 +42,26 @@ data:extend {{ auto_recycle = false, allow_decomposition = false, maximum_productivity = 1.5, +}} + +data:extend {{ + type = "recipe", + name = "maraxsis-electric-boiler", + ingredients = { + {type = "fluid", name = "water", amount = 100}, + }, + results = { + {type = "fluid", name = "steam", amount = 10, temperature = 100}, + }, + allow_productivity = false, + allow_decomposition = false, + category = "maraxsis-hydro-plant", + energy_required = 5, + surface_conditions = {{ + property = "pressure", + max = 0.1, + }}, + icon = "__maraxsis__/graphics/icons/electric-boiler.png", + icon_size = 64, + enabled = false, }} \ No newline at end of file