=== Effective Instruments — Instrument-Aura Mapping ===

The file "instrument_auras.json" maps instrument IDs to aura configs.
When a player opens an instrument, only the allowed auras are shown
in the selector, and the default aura is auto-selected.

--- Format ---

Two formats are supported per entry:

1. String shorthand (single aura — default and only option):
   "genshinstrument:windsong_lyre": "zephyrs_blessing"

2. Object form (default + additional allowed auras):
   "genshinstrument:windsong_lyre": {
     "default": "zephyrs_blessing",
     "allowed": ["zephyrs_blessing", "echoes_of_antiquity"]
   }

If "allowed" is omitted in object form, it defaults to just the default aura.
The default aura is always included in the allowed list automatically.

To show ALL auras for an instrument, remove its entry entirely.
Unknown instrument IDs are silently ignored.
Invalid aura IDs are logged as warnings and skipped.

--- Finding Instrument IDs ---

Genshin Instruments:
  genshinstrument:windsong_lyre
  genshinstrument:vintage_lyre
  genshinstrument:floral_zither
  genshinstrument:glorious_drum
  genshinstrument:nightwind_horn
  genshinstrument:ukulele
  genshinstrument:djem_djem_drum

Even More Instruments (if installed):
  evenmoreinstruments:guitar
  evenmoreinstruments:keyboard
  evenmoreinstruments:koto
  evenmoreinstruments:pipa
  evenmoreinstruments:saxophone
  evenmoreinstruments:shamisen
  evenmoreinstruments:trombone
  evenmoreinstruments:violin

Even More Instruments — Note Block variants:
  evenmoreinstruments:harp_note_block_instrument
  evenmoreinstruments:bass_note_block_instrument
  evenmoreinstruments:basedrum_note_block_instrument
  evenmoreinstruments:snare_note_block_instrument
  evenmoreinstruments:hat_note_block_instrument
  evenmoreinstruments:bell_note_block_instrument
  evenmoreinstruments:chime_note_block_instrument
  evenmoreinstruments:flute_note_block_instrument
  evenmoreinstruments:guitar_note_block_instrument
  evenmoreinstruments:xylophone_note_block_instrument
  evenmoreinstruments:iron_xylophone_note_block_instrument
  evenmoreinstruments:cow_bell_note_block_instrument
  evenmoreinstruments:didgeridoo_note_block_instrument
  evenmoreinstruments:bit_note_block_instrument
  evenmoreinstruments:banjo_note_block_instrument
  evenmoreinstruments:pling_note_block_instrument

Use /effectiveinstruments reload to apply changes without restarting.
