This commit is contained in:
Natha 2025-09-23 16:34:09 +02:00
parent a0bdbfac1e
commit 2ad266ece5
2 changed files with 16 additions and 16 deletions

View file

@ -6,7 +6,7 @@ if mods["space-exploration"] then
se_delivery_cannon_recipes[util.me.titanium_plate] = {name= util.me.titanium_plate}
util.se_landfill({ore="titanium-ore"})
if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
if util.se6() then
util.se_matter({ore="titanium-ore", energy_required=2, quant_out=10, stream_out=60})
data:extend({
{
@ -50,7 +50,7 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
},
energy_required = 60,
ingredients = {
{name = util.k2() and "enriched-titanium" or "titanium-ore", amount = 24},
{type= "item", name = util.k2() and "enriched-titanium" or "titanium-ore", amount = 24},
{type = "fluid", name = "se-pyroflux", amount = 10},
},
enabled = false,
@ -62,7 +62,7 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
type = "recipe",
name = "titanium-ingot",
category = "casting",
results = {{"titanium-ingot", 1}},
results = {{type="item", name="titanium-ingot", amount=1}},
energy_required = 100,
ingredients = {
{type = "fluid", name = "molten-titanium", amount = 500},
@ -81,11 +81,11 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
{icon = "__bztitanium__/graphics/icons/titanium-ingot.png", icon_size = 128, scale = 0.125, shift = {-8, -8}},
},
results = {
{name = "titanium-plate", amount = 10},
{type="item", name = "titanium-plate", amount = 10},
},
energy_required = 5,
ingredients = {
{name = "titanium-ingot", amount = 1}
{type="item", name = "titanium-ingot", amount = 1}
},
enabled = false,
always_show_made_in = true,