Where:

/plugins/CollectablesCodex/collectables/notes/**

This folder holds the books (lore/story content) for the NOTE collectable type

Books are YAML files that define titles, authors, and content for the in-game written book UI


Directory → Namespace mapping

Namespaces are inferred from folder structure:

collectables/
├── notes/                       # base repo = "notes"
│   ├── secret/                    # subfolder creates namespace "secret"
│   │   ├── captain_diary.yml
│   │   └── expedition_log.yml
│   ├── mage_manifesto.yml       # default namespace = "notes"
│   ├── papers.yml
│   ├── scholar_notes.yml
│   └── weathered_journal.yml
├── secret.yml   (repo config)
└── notes.yml  (repo config)

Registration for this looks like:

secret:captain_diary
secret:expedition_log
notes:mage_manifesto
notes:torn_page
notes:burnt_scroll
notes:bloodstained_letter
notes:scholar_notes
notes:weathered_journal

Rules:

IDs:


File shapes

Single-book form