// Brass & Sigil — Numismatics coin tooltip helper // // Numismatics ships its own "Value: N spurs" tooltip on each coin -- // don't duplicate that. The one piece players need that ISN'T there is: // where do I convert these? Answer: Bank Teller block. Add that hint // to each of the 6 coin denominations (spur, bevel, sprocket, cog, // crown, sun -- including sprocket which we missed in v0.22.1). const COIN_IDS = [ 'numismatics:spur', 'numismatics:bevel', 'numismatics:sprocket', 'numismatics:cog', 'numismatics:crown', 'numismatics:sun', ]; ItemEvents.modifyTooltips(event => { COIN_IDS.forEach(function(id) { event.add(id, Text.aqua('Right-click a Bank Teller block to convert denominations.')); }); });