Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: SverhRazum-Nah <[email protected]>
  • Loading branch information
SverhRazum-Nah authored Jan 13, 2025
1 parent 8741d77 commit 62a80d4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions kubejs/server_scripts/minecraft/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3270,4 +3270,37 @@ const registerMinecraftRecipes = (event) => {
.EUt(32)

//#endregion

//#region Кожа из кожаных предметов в дробилке
e.recipes.gtceu.macerator('tfg:leather_from_boots')
.itemInputs('minecraft:leather_boots')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)

e.recipes.gtceu.macerator('tfg:leather_from_saddle')
.itemInputs('minecraft:saddle')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)

e.recipes.gtceu.macerator('tfg:leather_from_horse_armor')
.itemInputs('minecraft:leather_horse_armor')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)

e.recipes.gtceu.macerator('tfg:leather_from_helmet')
.itemInputs('minecraft:leather_helmet')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)

e.recipes.gtceu.macerator('tfg:leather_from_leggings')
.itemInputs('minecraft:leather_leggings')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)

e.recipes.gtceu.macerator('tfg:leather_from_chestplate')
.itemInputs('minecraft:leather_chestplate')
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)
//#endregion

}

0 comments on commit 62a80d4

Please sign in to comment.