Buff plate press and twin plate press recipes

This commit is contained in:
DBotThePony 2023-06-26 19:16:17 +07:00
parent eec453f7ff
commit b3d1db2afa
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -65,15 +65,16 @@ fun addCraftingTableRecipes(consumer: Consumer<FinishedRecipe>) {
.build(consumer) .build(consumer)
MatteryRecipe(MBlocks.PLATE_PRESS, category = machinesCategory) MatteryRecipe(MBlocks.PLATE_PRESS, category = machinesCategory)
.rowB(MItemTags.PISTONS)
.rowB(MItems.MACHINE_FRAME) .rowB(MItems.MACHINE_FRAME)
.rowAC(MItemTags.PISTONS, MItemTags.PISTONS)
.unlockedBy(MItemTags.TRITANIUM_INGOTS) .unlockedBy(MItemTags.TRITANIUM_INGOTS)
.unlockedBy(MItems.ELECTRIC_PARTS) .unlockedBy(MItems.ELECTRIC_PARTS)
.build(consumer, "advanced") .build(consumer, "advanced")
MatteryRecipe(MBlocks.TWIN_PLATE_PRESS, category = machinesCategory) MatteryRecipe(MBlocks.TWIN_PLATE_PRESS, category = machinesCategory)
.rowB(MItemTags.PISTONS) .rowB(MItemTags.PISTONS)
.row(MItemTags.TRITANIUM_PLATES, MItems.PLATE_PRESS, MItemTags.TRITANIUM_PLATES) .rowB(MItems.PLATE_PRESS)
.rowB(MItemTags.TRITANIUM_PLATES)
.unlockedBy(MItems.PLATE_PRESS) .unlockedBy(MItems.PLATE_PRESS)
.build(consumer) .build(consumer)