added recipe for vanilla campfire, for people who like smoke particles (me)

This commit is contained in:
Pyritie 2025-04-23 22:15:57 +01:00
parent 87dc55582d
commit 058a3ae103
2 changed files with 24 additions and 1 deletions

View file

@ -948,4 +948,28 @@ const registerMinecraftRecipes = (event) => {
.itemOutputs('minecraft:leather')
.EUt(7).duration(80)
//#endregion
//#region Campfire
event.shaped('minecraft:campfire', [
' A ',
'ABA',
'CDC'
], {
A: 'minecraft:blaze_rod',
B: 'minecraft:blaze_powder',
C: '#forge:ingots/blue_steel',
D: '#forge:storage_blocks/charcoal',
}).id('tfg:campfire_charcoal')
event.shaped('minecraft:campfire', [
' A ',
'ABA',
'CDC'
], {
A: 'minecraft:blaze_rod',
B: 'minecraft:blaze_powder',
C: '#forge:ingots/blue_steel',
D: '#forge:storage_blocks/coal',
}).id('tfg:campfire_coal')
//#endregion
}