SE fix
This commit is contained in:
parent
b6a4672810
commit
e979bee57b
2 changed files with 22 additions and 22 deletions
|
|
@ -504,8 +504,8 @@ function util.se_landfill(params)
|
||||||
category = "hard-recycling",
|
category = "hard-recycling",
|
||||||
order = "z-b-"..params.ore,
|
order = "z-b-"..params.ore,
|
||||||
subgroup = "terrain",
|
subgroup = "terrain",
|
||||||
result = "landfill",
|
results = {{type="item", name="landfill", amount=1}},
|
||||||
ingredients = {{params.ore, 50}},
|
ingredients = {{type="item", name=params.ore, amount=50}},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
util.add_unlock("se-recycling-facility", lname)
|
util.add_unlock("se-recycling-facility", lname)
|
||||||
|
|
@ -611,15 +611,15 @@ function util.se_matter(params)
|
||||||
energy_required = params.energy_required,
|
energy_required = params.energy_required,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{sedata, 1},
|
{type="item", name=sedata, amount=1},
|
||||||
{type="fluid", name="se-particle-stream", amount=50},
|
{type="fluid", name="se-particle-stream", amount=50},
|
||||||
{type="fluid", name="se-space-coolant-supercooled", amount=25},
|
{type="fluid", name="se-space-coolant-supercooled", amount=25},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{params.ore, params.quant_out},
|
{type="item", name=params.ore, amount=params.quant_out},
|
||||||
{"se-contaminated-scrap", 1},
|
{type="item", name="se-contaminated-scrap", amount=1},
|
||||||
{type=item, name=sedata, amount=1, probability=.99},
|
{type="item", name=sedata, amount=1, probability=.99},
|
||||||
{type=item, name=sejunk, amount=1, probability=.01},
|
{type="item", name=sejunk, amount=1, probability=.01},
|
||||||
{type="fluid", name="se-space-coolant-hot", amount=25, ignored_by_stats=25, ignored_by_productivity=25},
|
{type="fluid", name="se-space-coolant-hot", amount=25, ignored_by_stats=25, ignored_by_productivity=25},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -650,13 +650,13 @@ function util.se_matter(params)
|
||||||
energy_required = 30,
|
energy_required = 30,
|
||||||
enabled = false,
|
enabled = false,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{"se-kr-matter-liberation-data", 1},
|
{type="item", name="se-kr-matter-liberation-data", amount=1},
|
||||||
{params.ore, params.quant_in},
|
{type="item", name=params.ore, amount=params.quant_in},
|
||||||
{type="fluid", name="se-particle-stream", amount=50},
|
{type="fluid", name="se-particle-stream", amount=50},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{type=item, name="se-kr-matter-liberation-data", amount=1, probability=.99},
|
{type="item", name="se-kr-matter-liberation-data", amount=1, probability=.99},
|
||||||
{type=item, name=sejunk, amount=1, probability=.01},
|
{type="item", name=sejunk, amount=1, probability=.01},
|
||||||
{type="fluid", name="se-particle-stream", amount=params.stream_out, ignored_by_stats=50, ignored_by_productivity=50},
|
{type="fluid", name="se-particle-stream", amount=params.stream_out, ignored_by_stats=50, ignored_by_productivity=50},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ if mods["space-exploration"] then
|
||||||
se_delivery_cannon_recipes[util.me.lead_plate] = {name= util.me.lead_plate}
|
se_delivery_cannon_recipes[util.me.lead_plate] = {name= util.me.lead_plate}
|
||||||
util.se_landfill({ore="lead-ore"})
|
util.se_landfill({ore="lead-ore"})
|
||||||
|
|
||||||
if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
if util.se6() then
|
||||||
util.se_matter({ore="lead-ore", energy_required=1, quant_out=10, stream_out=60})
|
util.se_matter({ore="lead-ore", energy_required=1, quant_out=10, stream_out=60})
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
|
|
@ -51,7 +51,7 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
||||||
},
|
},
|
||||||
energy_required = 60,
|
energy_required = 60,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{name = util.k2() and "enriched-lead" or "lead-ore", amount = 24},
|
{type="item", name = util.k2() and "enriched-lead" or "lead-ore", amount = 24},
|
||||||
{type = "fluid", name = "se-pyroflux", amount = 10},
|
{type = "fluid", name = "se-pyroflux", amount = 10},
|
||||||
},
|
},
|
||||||
enabled = false,
|
enabled = false,
|
||||||
|
|
@ -63,7 +63,7 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "lead-ingot",
|
name = "lead-ingot",
|
||||||
category = "casting",
|
category = "casting",
|
||||||
results = {{"lead-ingot", 1}},
|
results = {{type="item", name="lead-ingot", amount=1}},
|
||||||
energy_required = 25,
|
energy_required = 25,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{type = "fluid", name = "molten-lead", amount = 250},
|
{type = "fluid", name = "molten-lead", amount = 250},
|
||||||
|
|
@ -82,11 +82,11 @@ if string.sub(mods["space-exploration"], 1, 3) == "0.6" then
|
||||||
{icon = "__bzlead__/graphics/icons/lead-ingot.png", icon_size = 128, scale = 0.125, shift = {-8, -8}},
|
{icon = "__bzlead__/graphics/icons/lead-ingot.png", icon_size = 128, scale = 0.125, shift = {-8, -8}},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{name = "lead-plate", amount = 10},
|
{type="item", name = "lead-plate", amount = 10},
|
||||||
},
|
},
|
||||||
energy_required = 5,
|
energy_required = 5,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{name = "lead-ingot", amount = 1}
|
{type="item", name = "lead-ingot", amount = 1}
|
||||||
},
|
},
|
||||||
enabled = false,
|
enabled = false,
|
||||||
always_show_made_in = true,
|
always_show_made_in = true,
|
||||||
|
|
@ -122,11 +122,11 @@ else
|
||||||
always_show_made_in = true,
|
always_show_made_in = true,
|
||||||
allow_as_intermediate = false,
|
allow_as_intermediate = false,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{name = "enriched-lead", amount = 8},
|
{type="item", name = "enriched-lead", amount = 8},
|
||||||
{name = "se-vulcanite-block", amount = 1},
|
{type="item", name = "se-vulcanite-block", amount = 1},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{name = util.me.lead_plate, amount = 12},
|
{type="item", name = util.me.lead_plate, amount = 12},
|
||||||
},
|
},
|
||||||
icons =
|
icons =
|
||||||
{
|
{
|
||||||
|
|
@ -153,11 +153,11 @@ else
|
||||||
always_show_made_in = true,
|
always_show_made_in = true,
|
||||||
allow_as_intermediate = false,
|
allow_as_intermediate = false,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{name = "lead-ore", amount = 8},
|
{type="item", name = "lead-ore", amount = 8},
|
||||||
{name = "se-vulcanite-block", amount = 1},
|
{type="item", name = "se-vulcanite-block", amount = 1},
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
{name = util.me.lead_plate, amount = util.me.byproduct() and 10 or 12},
|
{type="item", name = util.me.lead_plate, amount = util.me.byproduct() and 10 or 12},
|
||||||
},
|
},
|
||||||
icons =
|
icons =
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue