gitextract_yalxaymq/ ├── .editorconfig ├── .git_commit_template.txt ├── .gitattributes ├── .github/ │ └── workflows/ │ └── core_build.yml ├── .gitignore ├── LICENSE ├── README.md ├── conf/ │ ├── conf.sh.dist │ └── transmog.conf.dist ├── data/ │ └── sql/ │ ├── db-auth/ │ │ └── acore_cms_subscriptions.sql │ ├── db-characters/ │ │ └── trasmorg.sql │ ├── db-world/ │ │ ├── trasm_world_NPC.sql │ │ ├── trasm_world_VendorItems.sql │ │ ├── trasm_world_texts.sql │ │ └── updates/ │ │ └── 2026_05_09_migrate_strings_to_module_string.sql │ └── updates/ │ ├── char/ │ │ └── .dummy │ └── world/ │ ├── .dummy │ └── 2026_05_09_transmog_set_disclaimer.sql ├── include.sh ├── setup_git_commit_template.sh └── src/ ├── Transmogrification.cpp ├── Transmogrification.h ├── cs_transmog.cpp ├── transmog_loader.cpp └── transmog_scripts.cpp