// Brass & Sigil — Numismatics coin recipe removal // // The 5 coin denominations cannot be crafted by players. All currency // enters circulation exclusively through the bank exchange (item-in / // coin-out). Initially with fixed rates admin-configured on Numismatics // vendor blocks; future dynamic-rates layer adjusts based on trade // volume (see project-mc-player-economy.md). // // Other Numismatics items (piggy banks, bank tellers, vendor blocks, // depositors, bank cards) stay craftable -- those are infrastructure, // not currency. // Renamed to avoid collision with COIN_IDS in numismatics_tooltips.js // (KubeJS server_scripts share a single Rhino global scope). const COIN_RECIPE_REMOVE_IDS = [ 'numismatics:spur', 'numismatics:bevel', 'numismatics:sprocket', 'numismatics:cog', 'numismatics:crown', 'numismatics:sun', ]; ServerEvents.recipes(event => { COIN_RECIPE_REMOVE_IDS.forEach(coin => event.remove({ output: coin })); console.info(`[bns/recipes_numismatics] removed crafting recipes for ${COIN_RECIPE_REMOVE_IDS.length} coin denominations`); });