How it works
Data-driven • Local only
- Drop JSON files into
/data on your site: players.json, captains.json, chemistry.json (schemas below).
- Images are loaded from
IMAGE_BASE (defaults to ./images) using <Name>.PNG.
- Draft state persists in
localStorage; use Reset to wipe.
Schemas
/data/players.json -> ["Mario","Luigi","Peach", ...]
/data/captains.json -> ["Mario","Bowser", ...]
/data/chemistry.json -> {
"Mario": {"likes":["Luigi","Peach"],"hates":["Wario"]},
"Luigi": {"likes":["Mario"], "hates":[]},
...
}