neuralgia/kubejs/server_scripts/hotornot/recipes.js
2025-07-21 13:52:18 +10:00

18 lines
No EOL
437 B
JavaScript

// priority: 0
"use strict";
const registerHotOrNotRecipes = (event) => {
event.shaped('tfchotornot:tongs/wood', [
'AB ',
'B ',
' '
], {
A: '#forge:tools/knives',
B: '#forge:rods/wooden'
}).id('tfchotornot:crafting/tongs/wood')
event.remove({ id: 'tfchotornot:anvil/tong_part/cast_iron' })
event.remove({ id: 'tfchotornot:crafting/tongs/cast_iron' })
event.remove({ id: 'tfchotornot:heating/tongs/cast_iron' })
}