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)
MatteryRecipe(MBlocks.PLATE_PRESS, category = machinesCategory)
.rowB(MItemTags.PISTONS)
.rowB(MItems.MACHINE_FRAME)
.rowAC(MItemTags.PISTONS, MItemTags.PISTONS)
.unlockedBy(MItemTags.TRITANIUM_INGOTS)
.unlockedBy(MItems.ELECTRIC_PARTS)
.build(consumer, "advanced")
MatteryRecipe(MBlocks.TWIN_PLATE_PRESS, category = machinesCategory)
.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)
.build(consumer)