recipes for new machines
This commit is contained in:
parent
5659fb2040
commit
e1681a5c6f
@ -401,4 +401,20 @@ fun addCraftingTableRecipes(consumer: Consumer<FinishedRecipe>) {
|
|||||||
.rowB(Tags.Items.RODS_WOODEN)
|
.rowB(Tags.Items.RODS_WOODEN)
|
||||||
.unlockedBy(Items.FLINT_AND_STEEL)
|
.unlockedBy(Items.FLINT_AND_STEEL)
|
||||||
.build(consumer)
|
.build(consumer)
|
||||||
|
|
||||||
|
MatteryRecipe(MItems.POWERED_FURNACE, category = machinesCategory)
|
||||||
|
.row(Items.FURNACE, MItems.MACHINE_FRAME, Items.FURNACE)
|
||||||
|
.unlockedBy(MItems.MACHINE_FRAME)
|
||||||
|
.build(consumer)
|
||||||
|
|
||||||
|
MatteryRecipe(MItems.POWERED_SMOKER, category = machinesCategory)
|
||||||
|
.row(Items.SMOKER, MItems.MACHINE_FRAME, Items.SMOKER)
|
||||||
|
.unlockedBy(MItems.MACHINE_FRAME)
|
||||||
|
.build(consumer)
|
||||||
|
|
||||||
|
MatteryRecipe(MItems.POWERED_BLAST_FURNACE, category = machinesCategory)
|
||||||
|
.rowAC(Items.FURNACE, Items.FURNACE)
|
||||||
|
.row(MItems.ELECTROMAGNET, MItems.MACHINE_FRAME, MItems.ELECTROMAGNET)
|
||||||
|
.unlockedBy(MItems.MACHINE_FRAME)
|
||||||
|
.build(consumer)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user