Set deep miner recipe ingredients
This commit is contained in:
parent
0edcc03e76
commit
bf6d6fa23a
1 changed files with 14 additions and 5 deletions
|
@ -12,11 +12,20 @@ local entity = DeepMiner.EntityBuilder:new():build({
|
|||
entity.resource_categories = { "deep-mining" }
|
||||
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()
|
||||
: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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue