Skip to content

Commit

Permalink
other: Added "electric boiler" recipe for obtaining steam in space wi…
Browse files Browse the repository at this point in the history
…thout a nuclear reactor.
  • Loading branch information
notnotmelon committed Dec 12, 2024
1 parent d11c429 commit bb4fbdf
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
Binary file added graphics/icons/electric-boiler.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions locale/en/locale.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
4 changes: 4 additions & 0 deletions prototypes/project-seadragon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
22 changes: 22 additions & 0 deletions prototypes/recipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}}

0 comments on commit bb4fbdf

Please sign in to comment.