Set deep miner recipe ingredients

This commit is contained in:
Simon Brodtmann 2025-01-11 15:12:47 +01:00
parent 0edcc03e76
commit bf6d6fa23a

View file

@ -12,11 +12,20 @@ local entity = DeepMiner.EntityBuilder:new():build({
entity.resource_categories = { "deep-mining" } entity.resource_categories = { "deep-mining" }
data:extend({ entity }) data:extend({ entity })
DeepMiner.ItemBuilder:new():apply() DeepMiner.ItemBuilder:new()
:itemsPerRocket(1)
:apply({
subgroup = "extraction-machine",
order = "a[items]-d[deep-miner]"
})
DeepMiner.RecipeBuilder:new() DeepMiner.RecipeBuilder:new()
:ingredients({ :ingredients({
{ type = "item", name = "iron-plate", amount = 100 } { type = "item", name = "processing-unit", amount = 100 },
{ type = "item", name = "electric-engine-unit", amount = 100 },
{ type = "item", name = "steel-plate", amount = 200 },
{ type = "item", name = "concrete", amount = 50 }
}) })
:apply() :apply()
@ -25,10 +34,10 @@ DeepMiner.TechnologyBuilder:new()
:count(500) :count(500)
:ingredients({ :ingredients({
{ "automation-science-pack", 1 }, { "automation-science-pack", 1 },
{ "logistic-science-pack", 1 }, { "logistic-science-pack", 1 },
{ "chemical-science-pack", 1 }, { "chemical-science-pack", 1 },
{ "production-science-pack", 1 }, { "production-science-pack", 1 },
{ "space-science-pack", 1 } { "space-science-pack", 1 }
}) })
:time(60) :time(60)
:apply() :apply()