K2 SE 0.6
This commit is contained in:
parent
70a3092d35
commit
ecd3d62c70
2 changed files with 87 additions and 82 deletions
|
|
@ -8,6 +8,9 @@ if deadlock then
|
|||
if mods["Krastorio2"] then
|
||||
deadlock.add_stack("enriched-titanium", "__bztitanium__/graphics/icons/stacked/enriched-titanium-stacked.png" , "deadlock-stacking-2", 64)
|
||||
end
|
||||
if data.raw.item["titanium-ingot"] then
|
||||
deadlock.add_stack("titanium-ingot", nil, "deadlock-stacking-2", nil)
|
||||
end
|
||||
end
|
||||
|
||||
-- Deadlock crating recipes
|
||||
|
|
@ -17,5 +20,8 @@ if deadlock_crating then
|
|||
if mods["Krastorio2"] then
|
||||
deadlock_crating.add_crate("enriched-titanium", "deadlock-crating-2")
|
||||
end
|
||||
if data.raw.item["titanium-ingot"] then
|
||||
deadlock_crating.add_crate("titanium-ingot", "deadlock-crating-2")
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -30,10 +30,6 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
|||
}
|
||||
})
|
||||
data.raw.item[util.titanium_plate].subgroup = "titanium"
|
||||
if mods["Krastorio2"] then
|
||||
data.raw.recipe["enriched-titanium-plate"].order= "d[titanium-plate]"
|
||||
se_delivery_cannon_recipes["enriched-titanium"] = {name= "enriched-titanium"}
|
||||
else
|
||||
data:extend({
|
||||
{
|
||||
type = "item",
|
||||
|
|
@ -63,11 +59,11 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
|||
name = "molten-titanium",
|
||||
subgroup = "titanium",
|
||||
results = {
|
||||
{type = "fluid", name = "molten-titanium", amount = 900},
|
||||
{type = "fluid", name = "molten-titanium", amount = mods.Krastorio2 and 750 or 900},
|
||||
},
|
||||
energy_required = 60,
|
||||
ingredients = {
|
||||
{name = "titanium-ore", amount = 24},
|
||||
{name = mods.Krastorio2 and "enriched-titanium" or "titanium-ore", amount = 24},
|
||||
{type = "fluid", name = "se-pyroflux", amount = 10},
|
||||
},
|
||||
enabled = false,
|
||||
|
|
@ -110,13 +106,16 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
|||
order = "a-c-b"
|
||||
},
|
||||
})
|
||||
util.add_effect("se-processing-vulcanite", {type = "unlock-recipe", recipe= "molten-titanium"})
|
||||
util.add_effect("se-processing-vulcanite", {type = "unlock-recipe", recipe= "titanium-ingot"})
|
||||
util.add_effect("se-processing-vulcanite", {type = "unlock-recipe", recipe= "titanium-ingot-to-plate"})
|
||||
util.add_effect("se-vulcanite-smelting", {type = "unlock-recipe", recipe= "molten-titanium"})
|
||||
util.add_effect("se-vulcanite-smelting", {type = "unlock-recipe", recipe= "titanium-ingot"})
|
||||
util.add_effect("se-vulcanite-smelting", {type = "unlock-recipe", recipe= "titanium-ingot-to-plate"})
|
||||
util.add_prerequisite(data.raw.technology["se-processing-vulcanite"], util.me.titanium_processing)
|
||||
if mods["Krastorio2"] then
|
||||
data.raw.recipe["enriched-titanium-plate"].order= "d[titanium-plate]"
|
||||
se_delivery_cannon_recipes["enriched-titanium"] = {name= "enriched-titanium"}
|
||||
end
|
||||
else
|
||||
data.raw.item[util.me.titanium_plate].subgroup = "plates"
|
||||
data.raw.item[util.me.titanium_plate].subgroup = "plate<F5><F5>s"
|
||||
if mods["Krastorio2"] then
|
||||
|
||||
data:extend({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue