Рецепты булыги и сырого камня в RockBreaker

This commit is contained in:
Dmitry 2023-11-27 10:01:03 +07:00
parent 4e39c1ff0a
commit be8a6793c6
2 changed files with 27 additions and 4 deletions

View file

@ -923,6 +923,21 @@ const registerTFCRecipes = (event) => {
.duration(300)
.EUt(2)
})
// Рецепты бесконечного камня в RockBreaker
global.allTFCStoneTypeNames.forEach(stoneTypeName => {
event.recipes.gtceu.rock_breaker(`raw_${stoneTypeName}`)
.notConsumable(`tfc:rock/raw/${stoneTypeName}`)
.itemOutputs(`tfc:rock/raw/${stoneTypeName}`)
.duration(16)
.EUt(7)
event.recipes.gtceu.rock_breaker(`cobble_${stoneTypeName}`)
.notConsumable(`tfc:rock/cobble/${stoneTypeName}`)
.itemOutputs(`tfc:rock/cobble/${stoneTypeName}`)
.duration(16)
.EUt(7)
})
}
const registerAutoTFCHeatingRecipes = (event) => {