Less generous recipe for blast furnace, update microwave recipe

This commit is contained in:
DBotThePony 2023-07-20 18:17:48 +07:00
parent e1681a5c6f
commit 436d324b50
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -408,13 +408,15 @@ fun addCraftingTableRecipes(consumer: Consumer<FinishedRecipe>) {
.build(consumer) .build(consumer)
MatteryRecipe(MItems.POWERED_SMOKER, category = machinesCategory) 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) .rowAC(Items.FURNACE, Items.FURNACE)
.row(MItems.ELECTROMAGNET, MItems.MACHINE_FRAME, MItems.ELECTROMAGNET) .row(MItems.ELECTROMAGNET, MItems.MACHINE_FRAME, MItems.ELECTROMAGNET)
.unlockedBy(MItems.MACHINE_FRAME) .unlockedBy(MItems.MACHINE_FRAME)
.build(consumer) .build(consumer)
MatteryRecipe(MItems.POWERED_BLAST_FURNACE, category = machinesCategory)
.row(MItems.ELECTROMAGNET, Items.FURNACE, MItems.ELECTROMAGNET)
.row(MItems.ELECTROMAGNET, MItems.MACHINE_FRAME, MItems.ELECTROMAGNET)
.row(MItems.ELECTROMAGNET, Items.FURNACE, MItems.ELECTROMAGNET)
.unlockedBy(MItems.MACHINE_FRAME)
.build(consumer)
} }