Fix ingredients
This commit is contained in:
parent
eabb69f95b
commit
01d55f3b62
3 changed files with 5 additions and 5 deletions
|
|
@ -104,7 +104,7 @@ if mods["space-exploration"] then
|
||||||
data.raw.recipe["enriched-lead-plate"].order= "d[lead-plate]"
|
data.raw.recipe["enriched-lead-plate"].order= "d[lead-plate]"
|
||||||
se_delivery_cannon_recipes["enriched-lead"] = {name= "enriched-lead"}
|
se_delivery_cannon_recipes["enriched-lead"] = {name= "enriched-lead"}
|
||||||
else
|
else
|
||||||
if util.me.byproduct() then util.add_product("molten-lead", {"copper-ore", 6}) end
|
if util.me.byproduct() then util.add_product("molten-lead", { type = "item", name = "copper-ore", amount = 6 }) end
|
||||||
end
|
end
|
||||||
se_delivery_cannon_recipes["lead-ingot"] = {name="lead-ingot"}
|
se_delivery_cannon_recipes["lead-ingot"] = {name="lead-ingot"}
|
||||||
end
|
end
|
||||||
|
|
@ -282,7 +282,7 @@ util.add_ingredient("storehouse-basic", "lead-plate", 8)
|
||||||
-- Leighzer's scrap
|
-- Leighzer's scrap
|
||||||
if mods.leighzerscrapyards then
|
if mods.leighzerscrapyards then
|
||||||
util.add_to_product("scrap-processing", "iron-plate", -1)
|
util.add_to_product("scrap-processing", "iron-plate", -1)
|
||||||
util.add_product("scrap-processing", {"lead-plate", 1})
|
util.add_product("scrap-processing", { type = "item", name = "lead-plate", amount = 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
util.add_minable_result("simple-entity", "huge-volcanic-rock", {type="item", name="lead-ore", amount_min=10, amount_max=24})
|
util.add_minable_result("simple-entity", "huge-volcanic-rock", {type="item", name="lead-ore", amount_min=10, amount_max=24})
|
||||||
|
|
|
||||||
|
|
@ -374,7 +374,7 @@ data:extend({
|
||||||
{
|
{
|
||||||
enabled = true,
|
enabled = true,
|
||||||
energy_required = 16,
|
energy_required = 16,
|
||||||
ingredients = {{"lead-ore", 10}},
|
ingredients = {{ type = "item", name = "lead-ore", amount = 10 }},
|
||||||
results = {
|
results = {
|
||||||
{type="item", name = "lead-ingot", amount_min=4, amount_max=5},
|
{type="item", name = "lead-ingot", amount_min=4, amount_max=5},
|
||||||
{type="item", name = "copper-ore", amount_min=1, amount_max=2},
|
{type="item", name = "copper-ore", amount_min=1, amount_max=2},
|
||||||
|
|
@ -383,7 +383,7 @@ data:extend({
|
||||||
{
|
{
|
||||||
enabled = true,
|
enabled = true,
|
||||||
energy_required = 6.4,
|
energy_required = 6.4,
|
||||||
ingredients = {{"lead-ore", 2}},
|
ingredients = {{ type = "item", name = "lead-ore", amount = 2 }},
|
||||||
results = {
|
results = {
|
||||||
{type="item", name = "lead-ingot", amount=2, probability=5/6},
|
{type="item", name = "lead-ingot", amount=2, probability=5/6},
|
||||||
{type="item", name = "copper-ore", amount=1, probability=1/3},
|
{type="item", name = "copper-ore", amount=1, probability=1/3},
|
||||||
|
|
@ -393,7 +393,7 @@ data:extend({
|
||||||
{
|
{
|
||||||
enabled = true,
|
enabled = true,
|
||||||
energy_required = 12.8,
|
energy_required = 12.8,
|
||||||
ingredients = {{"lead-ore", 4}},
|
ingredients = {{ type = "item", name = "lead-ore", amount = 4 }},
|
||||||
results = {
|
results = {
|
||||||
{type="item", name = "lead-ingot", amount=2, probability=5/6},
|
{type="item", name = "lead-ingot", amount=2, probability=5/6},
|
||||||
{type="item", name = "copper-ore", amount=2, probability=1/3},
|
{type="item", name = "copper-ore", amount=2, probability=1/3},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue