@px-lsp/server 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +334 -0
  3. package/THIRD-PARTY-NOTICES.md +83 -0
  4. package/data/ck3/dataTypes.json +2195 -0
  5. package/data/ck3/data_types/data_types_common.txt +2040 -0
  6. package/data/ck3/data_types/data_types_gui.txt +5264 -0
  7. package/data/ck3/data_types/data_types_internalclausewitzgui.txt +14843 -0
  8. package/data/ck3/data_types/data_types_script.txt +4251 -0
  9. package/data/ck3/data_types/data_types_uncategorized.txt +109984 -0
  10. package/data/ck3/freqs.json +1 -0
  11. package/data/ck3/guiSchema.json +6344 -0
  12. package/data/ck3/script_docs/effects.log +16059 -0
  13. package/data/ck3/script_docs/event_targets.log +2098 -0
  14. package/data/ck3/script_docs/modifiers.log +2228 -0
  15. package/data/ck3/script_docs/on_actions.log +5275 -0
  16. package/data/ck3/script_docs/triggers.log +11991 -0
  17. package/data/ck3/structures.json +9743 -0
  18. package/data/ck3/wikidocs/ATTRIBUTION.md +18 -0
  19. package/data/ck3/wikidocs/Data_types.md +2568 -0
  20. package/data/ck3/wikidocs/Effects_list.md +1176 -0
  21. package/data/ck3/wikidocs/Scopes_list.md +341 -0
  22. package/data/ck3/wikidocs/Triggers_list.md +1097 -0
  23. package/data/eu5/data_types/data_types_common.txt +2087 -0
  24. package/data/eu5/data_types/data_types_gui.txt +6732 -0
  25. package/data/eu5/data_types/data_types_internalclausewitzgui.txt +19276 -0
  26. package/data/eu5/data_types/data_types_script.txt +5688 -0
  27. package/data/eu5/data_types/data_types_uncategorized.txt +135569 -0
  28. package/data/vic3/data_types/data_types_common.txt +2021 -0
  29. package/data/vic3/data_types/data_types_gui.txt +5592 -0
  30. package/data/vic3/data_types/data_types_internalclausewitzgui.txt +17304 -0
  31. package/data/vic3/data_types/data_types_script.txt +2817 -0
  32. package/data/vic3/data_types/data_types_uncategorized.txt +84354 -0
  33. package/data/vic3/freqs.json +1 -0
  34. package/data/vic3/guiSchema.json +5578 -0
  35. package/data/vic3/script_docs/effects.log +38135 -0
  36. package/data/vic3/script_docs/event_targets.log +2028 -0
  37. package/data/vic3/script_docs/modifiers.log +18954 -0
  38. package/data/vic3/script_docs/on_actions.log +1561 -0
  39. package/data/vic3/script_docs/triggers.log +15738 -0
  40. package/data/vic3/structures.json +10189 -0
  41. package/dist/server.js +63668 -0
  42. package/media/px-lsp.svg +12 -0
  43. package/package.json +50 -0
  44. package/src/clientMode.ts +60 -0
  45. package/src/coa/coa.ts +184 -0
  46. package/src/coa/coaParse.ts +267 -0
  47. package/src/context.ts +78 -0
  48. package/src/contextKeywords.ts +224 -0
  49. package/src/data/dataBindingMacros.ts +82 -0
  50. package/src/data/dataFnDocs.ts +152 -0
  51. package/src/data/dataFnUsage.ts +431 -0
  52. package/src/data/dataTypes.ts +279 -0
  53. package/src/data/defines.ts +123 -0
  54. package/src/data/docsParser.ts +453 -0
  55. package/src/data/keywordDocs.ts +98 -0
  56. package/src/data/modifierTemplates.ts +143 -0
  57. package/src/data/textFormatting.ts +165 -0
  58. package/src/data/wikiDocs.ts +187 -0
  59. package/src/dds/decoder.ts +1007 -0
  60. package/src/dds/encode.ts +235 -0
  61. package/src/dds/index.ts +58 -0
  62. package/src/dds/png.ts +96 -0
  63. package/src/dds/tga.ts +62 -0
  64. package/src/documents.ts +35 -0
  65. package/src/features/assetPaths.ts +169 -0
  66. package/src/features/codeActions.ts +148 -0
  67. package/src/features/colors.ts +244 -0
  68. package/src/features/completion.ts +961 -0
  69. package/src/features/datafunction.ts +729 -0
  70. package/src/features/definition.ts +84 -0
  71. package/src/features/diagnostics.ts +244 -0
  72. package/src/features/folding.ts +106 -0
  73. package/src/features/formatting.ts +60 -0
  74. package/src/features/guiLanguage.ts +366 -0
  75. package/src/features/guiNavigation.ts +140 -0
  76. package/src/features/guiTree.ts +97 -0
  77. package/src/features/hover.ts +817 -0
  78. package/src/features/hoverRender.ts +222 -0
  79. package/src/features/inlayHints.ts +147 -0
  80. package/src/features/locFormatting.ts +127 -0
  81. package/src/features/references.ts +70 -0
  82. package/src/features/rename.ts +135 -0
  83. package/src/features/scopeAt.ts +65 -0
  84. package/src/features/semanticTokens.ts +188 -0
  85. package/src/features/signatureHelp.ts +72 -0
  86. package/src/features/symbols.ts +241 -0
  87. package/src/features/textureHover.ts +143 -0
  88. package/src/features/workspaceSymbols.ts +69 -0
  89. package/src/games/active.ts +19 -0
  90. package/src/games/ck3/ambientScopes.ts +273 -0
  91. package/src/games/ck3/index.ts +38 -0
  92. package/src/games/ck3/meta.ts +28 -0
  93. package/src/games/ck3/modifierPlaceholders.ts +61 -0
  94. package/src/games/ck3/saveSchema.ts +134 -0
  95. package/src/games/ck3/scaffolds.ts +197 -0
  96. package/src/games/ck3/schema.ts +422 -0
  97. package/src/games/ck3/structures.ts +887 -0
  98. package/src/games/eu5/index.ts +75 -0
  99. package/src/games/eu5/meta.ts +44 -0
  100. package/src/games/eu5/scaffolds.ts +49 -0
  101. package/src/games/eu5/schema.generated.ts +1043 -0
  102. package/src/games/jomini/variables.ts +134 -0
  103. package/src/games/profile.ts +205 -0
  104. package/src/games/registry.ts +27 -0
  105. package/src/games/vic3/index.ts +52 -0
  106. package/src/games/vic3/meta.ts +55 -0
  107. package/src/games/vic3/saveSchema.ts +77 -0
  108. package/src/games/vic3/scaffolds.ts +135 -0
  109. package/src/games/vic3/schema.ts +650 -0
  110. package/src/games/vic3/structures.ts +33 -0
  111. package/src/gui/anchorSpec.ts +66 -0
  112. package/src/gui/declMarkers.ts +30 -0
  113. package/src/gui/fillGeometry.ts +101 -0
  114. package/src/gui/guiDefs.ts +386 -0
  115. package/src/gui/guiDependencies.ts +352 -0
  116. package/src/gui/guiLinks.ts +64 -0
  117. package/src/gui/layoutEngine.ts +1998 -0
  118. package/src/gui/layoutService.ts +221 -0
  119. package/src/gui/measuredMetrics.ts +21 -0
  120. package/src/gui/previewService.ts +89 -0
  121. package/src/gui/saveSchema.ts +220 -0
  122. package/src/gui/saveValues.ts +399 -0
  123. package/src/gui/saveZip.ts +60 -0
  124. package/src/gui/sourceEdit.ts +535 -0
  125. package/src/gui/sourceEditService.ts +439 -0
  126. package/src/gui/sourceModel.ts +603 -0
  127. package/src/gui/textResolve.ts +145 -0
  128. package/src/gui/textureInfo.ts +106 -0
  129. package/src/gui/vocabulary.ts +149 -0
  130. package/src/gui/widgetEdit.ts +52 -0
  131. package/src/gui/widgetInfo.ts +245 -0
  132. package/src/index/docComments.ts +103 -0
  133. package/src/index/extract.ts +252 -0
  134. package/src/index/indexer.ts +369 -0
  135. package/src/index/intern.ts +101 -0
  136. package/src/index/lazyRefs.ts +145 -0
  137. package/src/index/modOrigin.ts +69 -0
  138. package/src/index/references.ts +534 -0
  139. package/src/overview/dependencies.ts +240 -0
  140. package/src/overview/eventBanner.ts +95 -0
  141. package/src/overview/eventDetail.ts +482 -0
  142. package/src/overview/eventGraph.ts +617 -0
  143. package/src/overview/eventVocabulary.ts +214 -0
  144. package/src/overview/locCoverage.ts +138 -0
  145. package/src/overview/modOverview.ts +29 -0
  146. package/src/overview/overrides.ts +89 -0
  147. package/src/parseCache.ts +81 -0
  148. package/src/parser/cst.ts +257 -0
  149. package/src/parser/encoding.ts +106 -0
  150. package/src/parser/index.ts +7 -0
  151. package/src/parser/lexer.ts +245 -0
  152. package/src/parser/locParser.ts +276 -0
  153. package/src/parser/parser.ts +360 -0
  154. package/src/schema/freqs.ts +70 -0
  155. package/src/schema/loader.ts +113 -0
  156. package/src/schema/types.ts +142 -0
  157. package/src/scopes/inference.ts +478 -0
  158. package/src/scopes/model.ts +148 -0
  159. package/src/scopes/varTypes.ts +290 -0
  160. package/src/server.ts +1894 -0
  161. package/src/serverData.ts +98 -0
  162. package/src/structure.ts +56 -0
  163. package/src/wordAt.ts +49 -0
@@ -0,0 +1,1043 @@
1
+ /**
2
+ * GENERATED FILE, do not edit by hand. Europa Universalis V schema table,
3
+ * imported from the community CWT rules for CWTools.
4
+ *
5
+ * upstream: https://github.com/kaiser-chris/cwtools-eu5-config
6
+ * commit: 7f2764a9536951dc9915c0b05509d0499408381a
7
+ * game version: EU5 1.3.4-beta
8
+ * imported: 2026-08-01
9
+ * license: MIT, (c) 2025 Chris Kaiser (see THIRD-PARTY-NOTICES.md)
10
+ *
11
+ * Regenerate:
12
+ * npx esbuild scripts/import-cwt-types.ts --bundle --platform=node \
13
+ * --outfile=dist/import-cwt-types.cjs && node dist/import-cwt-types.cjs <clone>
14
+ *
15
+ * 518 entries across 131 kinds. EU5 loads content from a flat root plus
16
+ * three load-stage roots (in_game/, main_menu/, loading_screen/); the CWT
17
+ * config declares all four for nearly every type, so each becomes its own
18
+ * entry. Nothing here has been verified against a live install; the table
19
+ * is only as right as the upstream rules are.
20
+ *
21
+ * Path conflicts resolved at import time (two CWT types claiming one folder):
22
+ * - common/script_values: script_value vs static_value -> kept script_value
23
+ * - in_game/common/script_values: script_value vs static_value -> kept script_value
24
+ * - main_menu/common/script_values: script_value vs static_value -> kept script_value
25
+ * - loading_screen/common/script_values: script_value vs static_value -> kept script_value
26
+ */
27
+ import type { SchemaEntry } from "../../schema/types";
28
+
29
+ export const EU5_SCHEMA: SchemaEntry[] = [
30
+ // --- Flat root (content loaded in every stage) ---
31
+ // requiredLoc: ["ACHIEVEMENT_$", "ACHIEVEMENT_DESC_$"] (CWT localisation block, unverified against vanilla)
32
+ { path: "common/achievements", kind: "achievement" },
33
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
34
+ { path: "common/advances", kind: "advance" },
35
+ // requiredLoc: ["$", "$_desc", "age_format_$"] (CWT localisation block, unverified against vanilla)
36
+ { path: "common/age", kind: "age" },
37
+ { path: "common/ai_diplochance", kind: "ai_diplochance" },
38
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
39
+ { path: "common/ai_personalities", kind: "ai_personality" },
40
+ // requiredLoc: ["title"] (CWT localisation block, unverified against vanilla)
41
+ { path: "common/alert_descriptions", kind: "alert_description" },
42
+ { path: "common/area_preferences", kind: "area_preference" },
43
+ // requiredLoc: ["ARTIST_TYPE_NAME_$", "ARTIST_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
44
+ { path: "common/artist_types", kind: "artist_type" },
45
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
46
+ { path: "common/artist_work", kind: "artist_work" },
47
+ // requiredLoc: ["AUTO_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
48
+ { path: "common/auto_modifiers", kind: "auto_modifier" },
49
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
50
+ { path: "common/avatars", kind: "avatar" },
51
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
52
+ { path: "common/biases", kind: "bias" },
53
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
54
+ { path: "common/building_categories", kind: "building_category" },
55
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
56
+ { path: "common/building_types", kind: "building_type" },
57
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
58
+ { path: "common/bureaucracies", kind: "bureaucracy" },
59
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
60
+ { path: "common/cabinet_actions", kind: "cabinet_action" },
61
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
62
+ { path: "common/casus_belli", kind: "casus_belli" },
63
+ // requiredLoc: ["$", "$_concept", "$_act", "$_desc_specific", "$_desc", "$_past", "$_act_past"] (CWT localisation block, unverified against vanilla)
64
+ { path: "common/character_interactions", kind: "character_interaction" },
65
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
66
+ { path: "common/child_educations", kind: "child_education" },
67
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
68
+ { path: "common/chivalric_orders", kind: "chivalric_order" },
69
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
70
+ { path: "common/climates", kind: "climate" },
71
+ { path: "common/coat_of_arms/coat_of_arms", kind: "coat_of_arm" },
72
+ // requiredLoc: ["country_description_category_name_$", "country_description_category_desc_$"] (CWT localisation block, unverified against vanilla)
73
+ { path: "common/country_description_categories", kind: "country_description_category" },
74
+ // requiredLoc: ["$", "$_desc", "$_act", "$_effect_text", "$_effect_text_past"] (CWT localisation block, unverified against vanilla)
75
+ { path: "common/country_interactions", kind: "country_interaction" },
76
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
77
+ { path: "common/country_ranks", kind: "country_rank" },
78
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
79
+ { path: "common/culture_groups", kind: "culture_group" },
80
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
81
+ { path: "common/cultures", kind: "culture" },
82
+ { path: "common/customizable_localization", kind: "customizable_localization" },
83
+ // requiredLoc: ["DEATH_REASON_$"] (CWT localisation block, unverified against vanilla)
84
+ { path: "common/death_reason", kind: "death_reason" },
85
+ // requiredLoc: ["HEIR_REASON_$"] (CWT localisation block, unverified against vanilla)
86
+ { path: "common/designated_heir_reason", kind: "designated_heir_reason" },
87
+ { path: "common/diplomatic_costs", kind: "diplomatic_cost" },
88
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
89
+ { path: "common/disasters", kind: "disaster" },
90
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
91
+ { path: "common/diseases", kind: "disease" },
92
+ { path: "common/effect_localization", kind: "effect_localization" },
93
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
94
+ { path: "common/employment_systems", kind: "employment_system" },
95
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
96
+ { path: "common/estate_privileges", kind: "estate_privilege" },
97
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
98
+ { path: "common/estates", kind: "estate" },
99
+ { path: "common/ethnicities", kind: "ethnicity" },
100
+ { path: "common/flag_definitions", kind: "flag_definition" },
101
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
102
+ { path: "common/formable_countries", kind: "formable_country" },
103
+ // requiredLoc: ["game_concept_$"] (CWT localisation block, unverified against vanilla)
104
+ { path: "common/game_concepts", kind: "game_concept" },
105
+ // requiredLoc: ["rule_$"] (CWT localisation block, unverified against vanilla)
106
+ { path: "common/game_rules", kind: "game_rule_category" },
107
+ { path: "common/generic_action_ai_lists", kind: "generic_action_ai_list" },
108
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
109
+ { path: "common/generic_actions", kind: "generic_action" },
110
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
111
+ { path: "common/gods", kind: "god" },
112
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
113
+ { path: "common/goods", kind: "good" },
114
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
115
+ { path: "common/goods_demand", kind: "goods_demand" },
116
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
117
+ { path: "common/goods_demand_category", kind: "goods_demand_category" },
118
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
119
+ { path: "common/government_reforms", kind: "government_reform" },
120
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
121
+ { path: "common/government_types", kind: "government_type" },
122
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
123
+ { path: "common/hegemons", kind: "hegemon" },
124
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
125
+ { path: "common/heir_selections", kind: "heir_selection" },
126
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
127
+ { path: "common/historical_scores", kind: "historical_score" },
128
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
129
+ { path: "common/holy_site_types", kind: "holy_site_type" },
130
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
131
+ { path: "common/holy_sites", kind: "holy_site" },
132
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
133
+ { path: "common/institution", kind: "institution" },
134
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
135
+ { path: "common/insults", kind: "insult" },
136
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
137
+ {
138
+ path: "common/international_organization_land_ownership_rules",
139
+ kind: "international_organization_land_ownership_rule",
140
+ },
141
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
142
+ { path: "common/international_organization_payments", kind: "international_organization_payment" },
143
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
144
+ {
145
+ path: "common/international_organization_special_statuses",
146
+ kind: "international_organization_special_status",
147
+ },
148
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
149
+ { path: "common/international_organizations", kind: "international_organization" },
150
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
151
+ { path: "common/join_war_rules", kind: "join_war_rule" },
152
+ { path: "common/language_families", kind: "language_family" },
153
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
154
+ { path: "common/languages", kind: "language" },
155
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
156
+ { path: "common/laws", kind: "law" },
157
+ { path: "common/levies", kind: "levy" },
158
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
159
+ { path: "common/location_ranks", kind: "location_rank" },
160
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
161
+ { path: "common/missions", kind: "mission" },
162
+ { path: "common/modifier_icons", kind: "modifier_icon" },
163
+ // requiredLoc: ["MODIFIER_TYPE_NAME_$", "MODIFIER_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
164
+ { path: "common/modifier_type_definitions", kind: "modifier_type" },
165
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
166
+ { path: "common/movements", kind: "movement" },
167
+ // requiredLoc: ["$", "$_flavour"] (CWT localisation block, unverified against vanilla)
168
+ { path: "common/music_player_tracks", kind: "music_player_track" },
169
+ { path: "common/on_action", kind: "on_action" },
170
+ // requiredLoc: ["$", "$_desc", "$_simple"] (CWT localisation block, unverified against vanilla)
171
+ { path: "common/parliament_agendas", kind: "parliament_agenda" },
172
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
173
+ { path: "common/parliament_issues", kind: "parliament_issue" },
174
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
175
+ { path: "common/parliament_types", kind: "parliament_type" },
176
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
177
+ { path: "common/peace_treaties", kind: "peace_treaty" },
178
+ { path: "common/persistent_dna", kind: "persistent_dna" },
179
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
180
+ { path: "common/pop_types", kind: "pop_type" },
181
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
182
+ { path: "common/prices", kind: "price" },
183
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
184
+ { path: "common/production_methods", kind: "production_method" },
185
+ { path: "common/rebel_demands", kind: "rebel_demand" },
186
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
187
+ { path: "common/recruitment_method", kind: "recruitment_method" },
188
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
189
+ { path: "common/regencies", kind: "regency" },
190
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
191
+ { path: "common/religion_groups", kind: "religion_group" },
192
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
193
+ { path: "common/religions", kind: "religion" },
194
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
195
+ { path: "common/religious_aspects", kind: "religious_aspect" },
196
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
197
+ { path: "common/religious_factions", kind: "religious_faction" },
198
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
199
+ { path: "common/religious_figures", kind: "religious_figure" },
200
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
201
+ { path: "common/religious_focuses", kind: "religious_focus" },
202
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
203
+ { path: "common/religious_schools", kind: "religious_school" },
204
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
205
+ { path: "common/resolutions", kind: "resolution" },
206
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
207
+ { path: "common/rival_criteria", kind: "rival_criteria" },
208
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
209
+ { path: "common/road_types", kind: "road_type" },
210
+ { path: "common/scenarios", kind: "scenario" },
211
+ { path: "common/script_values", kind: "script_value" },
212
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
213
+ { path: "common/scriptable_hints", kind: "scriptable_hint" },
214
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
215
+ { path: "common/scripted_country_names", kind: "scripted_country_name" },
216
+ { path: "common/scripted_diplomatic_objectives", kind: "scripted_diplomatic_objective" },
217
+ { path: "common/scripted_effects", kind: "scripted_effect" },
218
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
219
+ { path: "common/scripted_geography", kind: "scripted_geography" },
220
+ { path: "common/scripted_guis", kind: "scripted_gui" },
221
+ { path: "common/scripted_lists", kind: "scripted_list" },
222
+ // requiredLoc: ["$_relation", "$_relation_desc"] (CWT localisation block, unverified against vanilla)
223
+ { path: "common/scripted_relations", kind: "scripted_relation" },
224
+ { path: "common/scripted_triggers", kind: "scripted_trigger" },
225
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
226
+ { path: "common/situations", kind: "situation" },
227
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
228
+ { path: "common/societal_values", kind: "societal_value" },
229
+ // requiredLoc: ["STATIC_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
230
+ { path: "common/static_modifiers", kind: "static_modifier" },
231
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
232
+ { path: "common/subject_military_stances", kind: "subject_military_stance" },
233
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
234
+ { path: "common/subject_types", kind: "subject_type" },
235
+ { path: "common/tests", kind: "test" },
236
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
237
+ { path: "common/topography", kind: "topography" },
238
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
239
+ { path: "common/town_rights", kind: "town_right" },
240
+ { path: "common/town_setups", kind: "town_setup" },
241
+ { path: "common/trait_flavor", kind: "trait_flavor" },
242
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
243
+ { path: "common/traits", kind: "trait" },
244
+ { path: "common/trigger_localization", kind: "trigger_localization" },
245
+ { path: "common/tutorial_lesson_chains", kind: "tutorial_lesson_chain" },
246
+ { path: "common/tutorial_lessons", kind: "tutorial_lesson" },
247
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
248
+ { path: "common/unit_abilities", kind: "unit_ability" },
249
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
250
+ { path: "common/unit_categories", kind: "unit_category" },
251
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
252
+ { path: "common/unit_formation_preference", kind: "unit_formation_preference" },
253
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
254
+ { path: "common/unit_types", kind: "unit_type" },
255
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
256
+ { path: "common/vegetation", kind: "vegetation" },
257
+ // requiredLoc: ["war_goal_$"] (CWT localisation block, unverified against vanilla)
258
+ { path: "common/wargoals", kind: "war_goal" },
259
+ // requiredLoc: ["title", "desc"] (CWT localisation block, unverified against vanilla)
260
+ { path: "events", kind: "event", extraction: "event-id" },
261
+ // requiredLoc: ["mapmode_$_name", "mapmode_$"] (CWT localisation block, unverified against vanilla)
262
+ { path: "gfx/map/map_modes", kind: "map_mode" },
263
+ { path: "gfx/portraits/accessories", kind: "portrait_accessory" },
264
+ { path: "gfx/portraits/portrait_modifiers", kind: "portrait_modifier" },
265
+ { path: "localization", kind: "loc_key", ext: ".yml", extraction: "loc-key" },
266
+ // requiredLoc: ["$", "$_ADJ"] (CWT localisation block, unverified against vanilla)
267
+ { path: "setup/countries", kind: "country" },
268
+
269
+ // --- in_game/ (gameplay stage) ---
270
+ // requiredLoc: ["ACHIEVEMENT_$", "ACHIEVEMENT_DESC_$"] (CWT localisation block, unverified against vanilla)
271
+ { path: "in_game/common/achievements", kind: "achievement" },
272
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
273
+ { path: "in_game/common/advances", kind: "advance" },
274
+ // requiredLoc: ["$", "$_desc", "age_format_$"] (CWT localisation block, unverified against vanilla)
275
+ { path: "in_game/common/age", kind: "age" },
276
+ { path: "in_game/common/ai_diplochance", kind: "ai_diplochance" },
277
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
278
+ { path: "in_game/common/ai_personalities", kind: "ai_personality" },
279
+ // requiredLoc: ["title"] (CWT localisation block, unverified against vanilla)
280
+ { path: "in_game/common/alert_descriptions", kind: "alert_description" },
281
+ { path: "in_game/common/area_preferences", kind: "area_preference" },
282
+ // requiredLoc: ["ARTIST_TYPE_NAME_$", "ARTIST_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
283
+ { path: "in_game/common/artist_types", kind: "artist_type" },
284
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
285
+ { path: "in_game/common/artist_work", kind: "artist_work" },
286
+ // requiredLoc: ["AUTO_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
287
+ { path: "in_game/common/auto_modifiers", kind: "auto_modifier" },
288
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
289
+ { path: "in_game/common/avatars", kind: "avatar" },
290
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
291
+ { path: "in_game/common/biases", kind: "bias" },
292
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
293
+ { path: "in_game/common/building_categories", kind: "building_category" },
294
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
295
+ { path: "in_game/common/building_types", kind: "building_type" },
296
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
297
+ { path: "in_game/common/bureaucracies", kind: "bureaucracy" },
298
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
299
+ { path: "in_game/common/cabinet_actions", kind: "cabinet_action" },
300
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
301
+ { path: "in_game/common/casus_belli", kind: "casus_belli" },
302
+ // requiredLoc: ["$", "$_concept", "$_act", "$_desc_specific", "$_desc", "$_past", "$_act_past"] (CWT localisation block, unverified against vanilla)
303
+ { path: "in_game/common/character_interactions", kind: "character_interaction" },
304
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
305
+ { path: "in_game/common/child_educations", kind: "child_education" },
306
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
307
+ { path: "in_game/common/chivalric_orders", kind: "chivalric_order" },
308
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
309
+ { path: "in_game/common/climates", kind: "climate" },
310
+ { path: "in_game/common/coat_of_arms/coat_of_arms", kind: "coat_of_arm" },
311
+ // requiredLoc: ["country_description_category_name_$", "country_description_category_desc_$"] (CWT localisation block, unverified against vanilla)
312
+ { path: "in_game/common/country_description_categories", kind: "country_description_category" },
313
+ // requiredLoc: ["$", "$_desc", "$_act", "$_effect_text", "$_effect_text_past"] (CWT localisation block, unverified against vanilla)
314
+ { path: "in_game/common/country_interactions", kind: "country_interaction" },
315
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
316
+ { path: "in_game/common/country_ranks", kind: "country_rank" },
317
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
318
+ { path: "in_game/common/culture_groups", kind: "culture_group" },
319
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
320
+ { path: "in_game/common/cultures", kind: "culture" },
321
+ { path: "in_game/common/customizable_localization", kind: "customizable_localization" },
322
+ // requiredLoc: ["DEATH_REASON_$"] (CWT localisation block, unverified against vanilla)
323
+ { path: "in_game/common/death_reason", kind: "death_reason" },
324
+ // requiredLoc: ["HEIR_REASON_$"] (CWT localisation block, unverified against vanilla)
325
+ { path: "in_game/common/designated_heir_reason", kind: "designated_heir_reason" },
326
+ { path: "in_game/common/diplomatic_costs", kind: "diplomatic_cost" },
327
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
328
+ { path: "in_game/common/disasters", kind: "disaster" },
329
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
330
+ { path: "in_game/common/diseases", kind: "disease" },
331
+ { path: "in_game/common/effect_localization", kind: "effect_localization" },
332
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
333
+ { path: "in_game/common/employment_systems", kind: "employment_system" },
334
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
335
+ { path: "in_game/common/estate_privileges", kind: "estate_privilege" },
336
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
337
+ { path: "in_game/common/estates", kind: "estate" },
338
+ { path: "in_game/common/ethnicities", kind: "ethnicity" },
339
+ { path: "in_game/common/flag_definitions", kind: "flag_definition" },
340
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
341
+ { path: "in_game/common/formable_countries", kind: "formable_country" },
342
+ // requiredLoc: ["game_concept_$"] (CWT localisation block, unverified against vanilla)
343
+ { path: "in_game/common/game_concepts", kind: "game_concept" },
344
+ // requiredLoc: ["rule_$"] (CWT localisation block, unverified against vanilla)
345
+ { path: "in_game/common/game_rules", kind: "game_rule_category" },
346
+ { path: "in_game/common/generic_action_ai_lists", kind: "generic_action_ai_list" },
347
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
348
+ { path: "in_game/common/generic_actions", kind: "generic_action" },
349
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
350
+ { path: "in_game/common/gods", kind: "god" },
351
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
352
+ { path: "in_game/common/goods", kind: "good" },
353
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
354
+ { path: "in_game/common/goods_demand", kind: "goods_demand" },
355
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
356
+ { path: "in_game/common/goods_demand_category", kind: "goods_demand_category" },
357
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
358
+ { path: "in_game/common/government_reforms", kind: "government_reform" },
359
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
360
+ { path: "in_game/common/government_types", kind: "government_type" },
361
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
362
+ { path: "in_game/common/hegemons", kind: "hegemon" },
363
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
364
+ { path: "in_game/common/heir_selections", kind: "heir_selection" },
365
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
366
+ { path: "in_game/common/historical_scores", kind: "historical_score" },
367
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
368
+ { path: "in_game/common/holy_site_types", kind: "holy_site_type" },
369
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
370
+ { path: "in_game/common/holy_sites", kind: "holy_site" },
371
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
372
+ { path: "in_game/common/institution", kind: "institution" },
373
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
374
+ { path: "in_game/common/insults", kind: "insult" },
375
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
376
+ {
377
+ path: "in_game/common/international_organization_land_ownership_rules",
378
+ kind: "international_organization_land_ownership_rule",
379
+ },
380
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
381
+ { path: "in_game/common/international_organization_payments", kind: "international_organization_payment" },
382
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
383
+ {
384
+ path: "in_game/common/international_organization_special_statuses",
385
+ kind: "international_organization_special_status",
386
+ },
387
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
388
+ { path: "in_game/common/international_organizations", kind: "international_organization" },
389
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
390
+ { path: "in_game/common/join_war_rules", kind: "join_war_rule" },
391
+ { path: "in_game/common/language_families", kind: "language_family" },
392
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
393
+ { path: "in_game/common/languages", kind: "language" },
394
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
395
+ { path: "in_game/common/laws", kind: "law" },
396
+ { path: "in_game/common/levies", kind: "levy" },
397
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
398
+ { path: "in_game/common/location_ranks", kind: "location_rank" },
399
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
400
+ { path: "in_game/common/missions", kind: "mission" },
401
+ { path: "in_game/common/modifier_icons", kind: "modifier_icon" },
402
+ // requiredLoc: ["MODIFIER_TYPE_NAME_$", "MODIFIER_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
403
+ { path: "in_game/common/modifier_type_definitions", kind: "modifier_type" },
404
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
405
+ { path: "in_game/common/movements", kind: "movement" },
406
+ // requiredLoc: ["$", "$_flavour"] (CWT localisation block, unverified against vanilla)
407
+ { path: "in_game/common/music_player_tracks", kind: "music_player_track" },
408
+ { path: "in_game/common/on_action", kind: "on_action" },
409
+ // requiredLoc: ["$", "$_desc", "$_simple"] (CWT localisation block, unverified against vanilla)
410
+ { path: "in_game/common/parliament_agendas", kind: "parliament_agenda" },
411
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
412
+ { path: "in_game/common/parliament_issues", kind: "parliament_issue" },
413
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
414
+ { path: "in_game/common/parliament_types", kind: "parliament_type" },
415
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
416
+ { path: "in_game/common/peace_treaties", kind: "peace_treaty" },
417
+ { path: "in_game/common/persistent_dna", kind: "persistent_dna" },
418
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
419
+ { path: "in_game/common/pop_types", kind: "pop_type" },
420
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
421
+ { path: "in_game/common/prices", kind: "price" },
422
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
423
+ { path: "in_game/common/production_methods", kind: "production_method" },
424
+ { path: "in_game/common/rebel_demands", kind: "rebel_demand" },
425
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
426
+ { path: "in_game/common/recruitment_method", kind: "recruitment_method" },
427
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
428
+ { path: "in_game/common/regencies", kind: "regency" },
429
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
430
+ { path: "in_game/common/religion_groups", kind: "religion_group" },
431
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
432
+ { path: "in_game/common/religions", kind: "religion" },
433
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
434
+ { path: "in_game/common/religious_aspects", kind: "religious_aspect" },
435
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
436
+ { path: "in_game/common/religious_factions", kind: "religious_faction" },
437
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
438
+ { path: "in_game/common/religious_figures", kind: "religious_figure" },
439
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
440
+ { path: "in_game/common/religious_focuses", kind: "religious_focus" },
441
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
442
+ { path: "in_game/common/religious_schools", kind: "religious_school" },
443
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
444
+ { path: "in_game/common/resolutions", kind: "resolution" },
445
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
446
+ { path: "in_game/common/rival_criteria", kind: "rival_criteria" },
447
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
448
+ { path: "in_game/common/road_types", kind: "road_type" },
449
+ { path: "in_game/common/scenarios", kind: "scenario" },
450
+ { path: "in_game/common/script_values", kind: "script_value" },
451
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
452
+ { path: "in_game/common/scriptable_hints", kind: "scriptable_hint" },
453
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
454
+ { path: "in_game/common/scripted_country_names", kind: "scripted_country_name" },
455
+ { path: "in_game/common/scripted_diplomatic_objectives", kind: "scripted_diplomatic_objective" },
456
+ { path: "in_game/common/scripted_effects", kind: "scripted_effect" },
457
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
458
+ { path: "in_game/common/scripted_geography", kind: "scripted_geography" },
459
+ { path: "in_game/common/scripted_guis", kind: "scripted_gui" },
460
+ { path: "in_game/common/scripted_lists", kind: "scripted_list" },
461
+ // requiredLoc: ["$_relation", "$_relation_desc"] (CWT localisation block, unverified against vanilla)
462
+ { path: "in_game/common/scripted_relations", kind: "scripted_relation" },
463
+ { path: "in_game/common/scripted_triggers", kind: "scripted_trigger" },
464
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
465
+ { path: "in_game/common/situations", kind: "situation" },
466
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
467
+ { path: "in_game/common/societal_values", kind: "societal_value" },
468
+ // requiredLoc: ["STATIC_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
469
+ { path: "in_game/common/static_modifiers", kind: "static_modifier" },
470
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
471
+ { path: "in_game/common/subject_military_stances", kind: "subject_military_stance" },
472
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
473
+ { path: "in_game/common/subject_types", kind: "subject_type" },
474
+ { path: "in_game/common/tests", kind: "test" },
475
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
476
+ { path: "in_game/common/topography", kind: "topography" },
477
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
478
+ { path: "in_game/common/town_rights", kind: "town_right" },
479
+ { path: "in_game/common/town_setups", kind: "town_setup" },
480
+ { path: "in_game/common/trait_flavor", kind: "trait_flavor" },
481
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
482
+ { path: "in_game/common/traits", kind: "trait" },
483
+ { path: "in_game/common/trigger_localization", kind: "trigger_localization" },
484
+ { path: "in_game/common/tutorial_lesson_chains", kind: "tutorial_lesson_chain" },
485
+ { path: "in_game/common/tutorial_lessons", kind: "tutorial_lesson" },
486
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
487
+ { path: "in_game/common/unit_abilities", kind: "unit_ability" },
488
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
489
+ { path: "in_game/common/unit_categories", kind: "unit_category" },
490
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
491
+ { path: "in_game/common/unit_formation_preference", kind: "unit_formation_preference" },
492
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
493
+ { path: "in_game/common/unit_types", kind: "unit_type" },
494
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
495
+ { path: "in_game/common/vegetation", kind: "vegetation" },
496
+ // requiredLoc: ["war_goal_$"] (CWT localisation block, unverified against vanilla)
497
+ { path: "in_game/common/wargoals", kind: "war_goal" },
498
+ // requiredLoc: ["title", "desc"] (CWT localisation block, unverified against vanilla)
499
+ { path: "in_game/events", kind: "event", extraction: "event-id" },
500
+ { path: "in_game/localization", kind: "loc_key", ext: ".yml", extraction: "loc-key" },
501
+ // requiredLoc: ["mapmode_$_name", "mapmode_$"] (CWT localisation block, unverified against vanilla)
502
+ { path: "in_game/map/map_modes", kind: "map_mode" },
503
+ // requiredLoc: ["$", "$_ADJ"] (CWT localisation block, unverified against vanilla)
504
+ { path: "in_game/setup/countries", kind: "country" },
505
+
506
+ // --- main_menu/ (main-menu stage) ---
507
+ // requiredLoc: ["ACHIEVEMENT_$", "ACHIEVEMENT_DESC_$"] (CWT localisation block, unverified against vanilla)
508
+ { path: "main_menu/common/achievements", kind: "achievement" },
509
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
510
+ { path: "main_menu/common/advances", kind: "advance" },
511
+ // requiredLoc: ["$", "$_desc", "age_format_$"] (CWT localisation block, unverified against vanilla)
512
+ { path: "main_menu/common/age", kind: "age" },
513
+ { path: "main_menu/common/ai_diplochance", kind: "ai_diplochance" },
514
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
515
+ { path: "main_menu/common/ai_personalities", kind: "ai_personality" },
516
+ // requiredLoc: ["title"] (CWT localisation block, unverified against vanilla)
517
+ { path: "main_menu/common/alert_descriptions", kind: "alert_description" },
518
+ { path: "main_menu/common/area_preferences", kind: "area_preference" },
519
+ // requiredLoc: ["ARTIST_TYPE_NAME_$", "ARTIST_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
520
+ { path: "main_menu/common/artist_types", kind: "artist_type" },
521
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
522
+ { path: "main_menu/common/artist_work", kind: "artist_work" },
523
+ // requiredLoc: ["AUTO_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
524
+ { path: "main_menu/common/auto_modifiers", kind: "auto_modifier" },
525
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
526
+ { path: "main_menu/common/avatars", kind: "avatar" },
527
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
528
+ { path: "main_menu/common/biases", kind: "bias" },
529
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
530
+ { path: "main_menu/common/building_categories", kind: "building_category" },
531
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
532
+ { path: "main_menu/common/building_types", kind: "building_type" },
533
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
534
+ { path: "main_menu/common/bureaucracies", kind: "bureaucracy" },
535
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
536
+ { path: "main_menu/common/cabinet_actions", kind: "cabinet_action" },
537
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
538
+ { path: "main_menu/common/casus_belli", kind: "casus_belli" },
539
+ // requiredLoc: ["$", "$_concept", "$_act", "$_desc_specific", "$_desc", "$_past", "$_act_past"] (CWT localisation block, unverified against vanilla)
540
+ { path: "main_menu/common/character_interactions", kind: "character_interaction" },
541
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
542
+ { path: "main_menu/common/child_educations", kind: "child_education" },
543
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
544
+ { path: "main_menu/common/chivalric_orders", kind: "chivalric_order" },
545
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
546
+ { path: "main_menu/common/climates", kind: "climate" },
547
+ { path: "main_menu/common/coat_of_arms/coat_of_arms", kind: "coat_of_arm" },
548
+ // requiredLoc: ["country_description_category_name_$", "country_description_category_desc_$"] (CWT localisation block, unverified against vanilla)
549
+ { path: "main_menu/common/country_description_categories", kind: "country_description_category" },
550
+ // requiredLoc: ["$", "$_desc", "$_act", "$_effect_text", "$_effect_text_past"] (CWT localisation block, unverified against vanilla)
551
+ { path: "main_menu/common/country_interactions", kind: "country_interaction" },
552
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
553
+ { path: "main_menu/common/country_ranks", kind: "country_rank" },
554
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
555
+ { path: "main_menu/common/culture_groups", kind: "culture_group" },
556
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
557
+ { path: "main_menu/common/cultures", kind: "culture" },
558
+ { path: "main_menu/common/customizable_localization", kind: "customizable_localization" },
559
+ // requiredLoc: ["DEATH_REASON_$"] (CWT localisation block, unverified against vanilla)
560
+ { path: "main_menu/common/death_reason", kind: "death_reason" },
561
+ // requiredLoc: ["HEIR_REASON_$"] (CWT localisation block, unverified against vanilla)
562
+ { path: "main_menu/common/designated_heir_reason", kind: "designated_heir_reason" },
563
+ { path: "main_menu/common/diplomatic_costs", kind: "diplomatic_cost" },
564
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
565
+ { path: "main_menu/common/disasters", kind: "disaster" },
566
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
567
+ { path: "main_menu/common/diseases", kind: "disease" },
568
+ { path: "main_menu/common/effect_localization", kind: "effect_localization" },
569
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
570
+ { path: "main_menu/common/employment_systems", kind: "employment_system" },
571
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
572
+ { path: "main_menu/common/estate_privileges", kind: "estate_privilege" },
573
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
574
+ { path: "main_menu/common/estates", kind: "estate" },
575
+ { path: "main_menu/common/ethnicities", kind: "ethnicity" },
576
+ { path: "main_menu/common/flag_definitions", kind: "flag_definition" },
577
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
578
+ { path: "main_menu/common/formable_countries", kind: "formable_country" },
579
+ // requiredLoc: ["game_concept_$"] (CWT localisation block, unverified against vanilla)
580
+ { path: "main_menu/common/game_concepts", kind: "game_concept" },
581
+ // requiredLoc: ["rule_$"] (CWT localisation block, unverified against vanilla)
582
+ { path: "main_menu/common/game_rules", kind: "game_rule_category" },
583
+ { path: "main_menu/common/generic_action_ai_lists", kind: "generic_action_ai_list" },
584
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
585
+ { path: "main_menu/common/generic_actions", kind: "generic_action" },
586
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
587
+ { path: "main_menu/common/gods", kind: "god" },
588
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
589
+ { path: "main_menu/common/goods", kind: "good" },
590
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
591
+ { path: "main_menu/common/goods_demand", kind: "goods_demand" },
592
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
593
+ { path: "main_menu/common/goods_demand_category", kind: "goods_demand_category" },
594
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
595
+ { path: "main_menu/common/government_reforms", kind: "government_reform" },
596
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
597
+ { path: "main_menu/common/government_types", kind: "government_type" },
598
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
599
+ { path: "main_menu/common/hegemons", kind: "hegemon" },
600
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
601
+ { path: "main_menu/common/heir_selections", kind: "heir_selection" },
602
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
603
+ { path: "main_menu/common/historical_scores", kind: "historical_score" },
604
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
605
+ { path: "main_menu/common/holy_site_types", kind: "holy_site_type" },
606
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
607
+ { path: "main_menu/common/holy_sites", kind: "holy_site" },
608
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
609
+ { path: "main_menu/common/institution", kind: "institution" },
610
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
611
+ { path: "main_menu/common/insults", kind: "insult" },
612
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
613
+ {
614
+ path: "main_menu/common/international_organization_land_ownership_rules",
615
+ kind: "international_organization_land_ownership_rule",
616
+ },
617
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
618
+ {
619
+ path: "main_menu/common/international_organization_payments",
620
+ kind: "international_organization_payment",
621
+ },
622
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
623
+ {
624
+ path: "main_menu/common/international_organization_special_statuses",
625
+ kind: "international_organization_special_status",
626
+ },
627
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
628
+ { path: "main_menu/common/international_organizations", kind: "international_organization" },
629
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
630
+ { path: "main_menu/common/join_war_rules", kind: "join_war_rule" },
631
+ { path: "main_menu/common/language_families", kind: "language_family" },
632
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
633
+ { path: "main_menu/common/languages", kind: "language" },
634
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
635
+ { path: "main_menu/common/laws", kind: "law" },
636
+ { path: "main_menu/common/levies", kind: "levy" },
637
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
638
+ { path: "main_menu/common/location_ranks", kind: "location_rank" },
639
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
640
+ { path: "main_menu/common/missions", kind: "mission" },
641
+ { path: "main_menu/common/modifier_icons", kind: "modifier_icon" },
642
+ // requiredLoc: ["MODIFIER_TYPE_NAME_$", "MODIFIER_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
643
+ { path: "main_menu/common/modifier_type_definitions", kind: "modifier_type" },
644
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
645
+ { path: "main_menu/common/movements", kind: "movement" },
646
+ // requiredLoc: ["$", "$_flavour"] (CWT localisation block, unverified against vanilla)
647
+ { path: "main_menu/common/music_player_tracks", kind: "music_player_track" },
648
+ { path: "main_menu/common/on_action", kind: "on_action" },
649
+ // requiredLoc: ["$", "$_desc", "$_simple"] (CWT localisation block, unverified against vanilla)
650
+ { path: "main_menu/common/parliament_agendas", kind: "parliament_agenda" },
651
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
652
+ { path: "main_menu/common/parliament_issues", kind: "parliament_issue" },
653
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
654
+ { path: "main_menu/common/parliament_types", kind: "parliament_type" },
655
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
656
+ { path: "main_menu/common/peace_treaties", kind: "peace_treaty" },
657
+ { path: "main_menu/common/persistent_dna", kind: "persistent_dna" },
658
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
659
+ { path: "main_menu/common/pop_types", kind: "pop_type" },
660
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
661
+ { path: "main_menu/common/prices", kind: "price" },
662
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
663
+ { path: "main_menu/common/production_methods", kind: "production_method" },
664
+ { path: "main_menu/common/rebel_demands", kind: "rebel_demand" },
665
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
666
+ { path: "main_menu/common/recruitment_method", kind: "recruitment_method" },
667
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
668
+ { path: "main_menu/common/regencies", kind: "regency" },
669
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
670
+ { path: "main_menu/common/religion_groups", kind: "religion_group" },
671
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
672
+ { path: "main_menu/common/religions", kind: "religion" },
673
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
674
+ { path: "main_menu/common/religious_aspects", kind: "religious_aspect" },
675
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
676
+ { path: "main_menu/common/religious_factions", kind: "religious_faction" },
677
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
678
+ { path: "main_menu/common/religious_figures", kind: "religious_figure" },
679
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
680
+ { path: "main_menu/common/religious_focuses", kind: "religious_focus" },
681
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
682
+ { path: "main_menu/common/religious_schools", kind: "religious_school" },
683
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
684
+ { path: "main_menu/common/resolutions", kind: "resolution" },
685
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
686
+ { path: "main_menu/common/rival_criteria", kind: "rival_criteria" },
687
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
688
+ { path: "main_menu/common/road_types", kind: "road_type" },
689
+ { path: "main_menu/common/scenarios", kind: "scenario" },
690
+ { path: "main_menu/common/script_values", kind: "script_value" },
691
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
692
+ { path: "main_menu/common/scriptable_hints", kind: "scriptable_hint" },
693
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
694
+ { path: "main_menu/common/scripted_country_names", kind: "scripted_country_name" },
695
+ { path: "main_menu/common/scripted_diplomatic_objectives", kind: "scripted_diplomatic_objective" },
696
+ { path: "main_menu/common/scripted_effects", kind: "scripted_effect" },
697
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
698
+ { path: "main_menu/common/scripted_geography", kind: "scripted_geography" },
699
+ { path: "main_menu/common/scripted_guis", kind: "scripted_gui" },
700
+ { path: "main_menu/common/scripted_lists", kind: "scripted_list" },
701
+ // requiredLoc: ["$_relation", "$_relation_desc"] (CWT localisation block, unverified against vanilla)
702
+ { path: "main_menu/common/scripted_relations", kind: "scripted_relation" },
703
+ { path: "main_menu/common/scripted_triggers", kind: "scripted_trigger" },
704
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
705
+ { path: "main_menu/common/situations", kind: "situation" },
706
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
707
+ { path: "main_menu/common/societal_values", kind: "societal_value" },
708
+ // requiredLoc: ["STATIC_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
709
+ { path: "main_menu/common/static_modifiers", kind: "static_modifier" },
710
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
711
+ { path: "main_menu/common/subject_military_stances", kind: "subject_military_stance" },
712
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
713
+ { path: "main_menu/common/subject_types", kind: "subject_type" },
714
+ { path: "main_menu/common/tests", kind: "test" },
715
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
716
+ { path: "main_menu/common/topography", kind: "topography" },
717
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
718
+ { path: "main_menu/common/town_rights", kind: "town_right" },
719
+ { path: "main_menu/common/town_setups", kind: "town_setup" },
720
+ { path: "main_menu/common/trait_flavor", kind: "trait_flavor" },
721
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
722
+ { path: "main_menu/common/traits", kind: "trait" },
723
+ { path: "main_menu/common/trigger_localization", kind: "trigger_localization" },
724
+ { path: "main_menu/common/tutorial_lesson_chains", kind: "tutorial_lesson_chain" },
725
+ { path: "main_menu/common/tutorial_lessons", kind: "tutorial_lesson" },
726
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
727
+ { path: "main_menu/common/unit_abilities", kind: "unit_ability" },
728
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
729
+ { path: "main_menu/common/unit_categories", kind: "unit_category" },
730
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
731
+ { path: "main_menu/common/unit_formation_preference", kind: "unit_formation_preference" },
732
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
733
+ { path: "main_menu/common/unit_types", kind: "unit_type" },
734
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
735
+ { path: "main_menu/common/vegetation", kind: "vegetation" },
736
+ // requiredLoc: ["war_goal_$"] (CWT localisation block, unverified against vanilla)
737
+ { path: "main_menu/common/wargoals", kind: "war_goal" },
738
+ // requiredLoc: ["title", "desc"] (CWT localisation block, unverified against vanilla)
739
+ { path: "main_menu/events", kind: "event", extraction: "event-id" },
740
+ { path: "main_menu/localization", kind: "loc_key", ext: ".yml", extraction: "loc-key" },
741
+ // requiredLoc: ["mapmode_$_name", "mapmode_$"] (CWT localisation block, unverified against vanilla)
742
+ { path: "main_menu/map/map_modes", kind: "map_mode" },
743
+ // requiredLoc: ["$", "$_ADJ"] (CWT localisation block, unverified against vanilla)
744
+ { path: "main_menu/setup/countries", kind: "country" },
745
+
746
+ // --- loading_screen/ (loading-screen stage) ---
747
+ // requiredLoc: ["ACHIEVEMENT_$", "ACHIEVEMENT_DESC_$"] (CWT localisation block, unverified against vanilla)
748
+ { path: "loading_screen/common/achievements", kind: "achievement" },
749
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
750
+ { path: "loading_screen/common/advances", kind: "advance" },
751
+ // requiredLoc: ["$", "$_desc", "age_format_$"] (CWT localisation block, unverified against vanilla)
752
+ { path: "loading_screen/common/age", kind: "age" },
753
+ { path: "loading_screen/common/ai_diplochance", kind: "ai_diplochance" },
754
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
755
+ { path: "loading_screen/common/ai_personalities", kind: "ai_personality" },
756
+ // requiredLoc: ["title"] (CWT localisation block, unverified against vanilla)
757
+ { path: "loading_screen/common/alert_descriptions", kind: "alert_description" },
758
+ { path: "loading_screen/common/area_preferences", kind: "area_preference" },
759
+ // requiredLoc: ["ARTIST_TYPE_NAME_$", "ARTIST_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
760
+ { path: "loading_screen/common/artist_types", kind: "artist_type" },
761
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
762
+ { path: "loading_screen/common/artist_work", kind: "artist_work" },
763
+ // requiredLoc: ["AUTO_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
764
+ { path: "loading_screen/common/auto_modifiers", kind: "auto_modifier" },
765
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
766
+ { path: "loading_screen/common/avatars", kind: "avatar" },
767
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
768
+ { path: "loading_screen/common/biases", kind: "bias" },
769
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
770
+ { path: "loading_screen/common/building_categories", kind: "building_category" },
771
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
772
+ { path: "loading_screen/common/building_types", kind: "building_type" },
773
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
774
+ { path: "loading_screen/common/bureaucracies", kind: "bureaucracy" },
775
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
776
+ { path: "loading_screen/common/cabinet_actions", kind: "cabinet_action" },
777
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
778
+ { path: "loading_screen/common/casus_belli", kind: "casus_belli" },
779
+ // requiredLoc: ["$", "$_concept", "$_act", "$_desc_specific", "$_desc", "$_past", "$_act_past"] (CWT localisation block, unverified against vanilla)
780
+ { path: "loading_screen/common/character_interactions", kind: "character_interaction" },
781
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
782
+ { path: "loading_screen/common/child_educations", kind: "child_education" },
783
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
784
+ { path: "loading_screen/common/chivalric_orders", kind: "chivalric_order" },
785
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
786
+ { path: "loading_screen/common/climates", kind: "climate" },
787
+ { path: "loading_screen/common/coat_of_arms/coat_of_arms", kind: "coat_of_arm" },
788
+ // requiredLoc: ["country_description_category_name_$", "country_description_category_desc_$"] (CWT localisation block, unverified against vanilla)
789
+ { path: "loading_screen/common/country_description_categories", kind: "country_description_category" },
790
+ // requiredLoc: ["$", "$_desc", "$_act", "$_effect_text", "$_effect_text_past"] (CWT localisation block, unverified against vanilla)
791
+ { path: "loading_screen/common/country_interactions", kind: "country_interaction" },
792
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
793
+ { path: "loading_screen/common/country_ranks", kind: "country_rank" },
794
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
795
+ { path: "loading_screen/common/culture_groups", kind: "culture_group" },
796
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
797
+ { path: "loading_screen/common/cultures", kind: "culture" },
798
+ { path: "loading_screen/common/customizable_localization", kind: "customizable_localization" },
799
+ // requiredLoc: ["DEATH_REASON_$"] (CWT localisation block, unverified against vanilla)
800
+ { path: "loading_screen/common/death_reason", kind: "death_reason" },
801
+ // requiredLoc: ["HEIR_REASON_$"] (CWT localisation block, unverified against vanilla)
802
+ { path: "loading_screen/common/designated_heir_reason", kind: "designated_heir_reason" },
803
+ { path: "loading_screen/common/diplomatic_costs", kind: "diplomatic_cost" },
804
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
805
+ { path: "loading_screen/common/disasters", kind: "disaster" },
806
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
807
+ { path: "loading_screen/common/diseases", kind: "disease" },
808
+ { path: "loading_screen/common/effect_localization", kind: "effect_localization" },
809
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
810
+ { path: "loading_screen/common/employment_systems", kind: "employment_system" },
811
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
812
+ { path: "loading_screen/common/estate_privileges", kind: "estate_privilege" },
813
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
814
+ { path: "loading_screen/common/estates", kind: "estate" },
815
+ { path: "loading_screen/common/ethnicities", kind: "ethnicity" },
816
+ { path: "loading_screen/common/flag_definitions", kind: "flag_definition" },
817
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
818
+ { path: "loading_screen/common/formable_countries", kind: "formable_country" },
819
+ // requiredLoc: ["game_concept_$"] (CWT localisation block, unverified against vanilla)
820
+ { path: "loading_screen/common/game_concepts", kind: "game_concept" },
821
+ // requiredLoc: ["rule_$"] (CWT localisation block, unverified against vanilla)
822
+ { path: "loading_screen/common/game_rules", kind: "game_rule_category" },
823
+ { path: "loading_screen/common/generic_action_ai_lists", kind: "generic_action_ai_list" },
824
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
825
+ { path: "loading_screen/common/generic_actions", kind: "generic_action" },
826
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
827
+ { path: "loading_screen/common/gods", kind: "god" },
828
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
829
+ { path: "loading_screen/common/goods", kind: "good" },
830
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
831
+ { path: "loading_screen/common/goods_demand", kind: "goods_demand" },
832
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
833
+ { path: "loading_screen/common/goods_demand_category", kind: "goods_demand_category" },
834
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
835
+ { path: "loading_screen/common/government_reforms", kind: "government_reform" },
836
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
837
+ { path: "loading_screen/common/government_types", kind: "government_type" },
838
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
839
+ { path: "loading_screen/common/hegemons", kind: "hegemon" },
840
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
841
+ { path: "loading_screen/common/heir_selections", kind: "heir_selection" },
842
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
843
+ { path: "loading_screen/common/historical_scores", kind: "historical_score" },
844
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
845
+ { path: "loading_screen/common/holy_site_types", kind: "holy_site_type" },
846
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
847
+ { path: "loading_screen/common/holy_sites", kind: "holy_site" },
848
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
849
+ { path: "loading_screen/common/institution", kind: "institution" },
850
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
851
+ { path: "loading_screen/common/insults", kind: "insult" },
852
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
853
+ {
854
+ path: "loading_screen/common/international_organization_land_ownership_rules",
855
+ kind: "international_organization_land_ownership_rule",
856
+ },
857
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
858
+ {
859
+ path: "loading_screen/common/international_organization_payments",
860
+ kind: "international_organization_payment",
861
+ },
862
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
863
+ {
864
+ path: "loading_screen/common/international_organization_special_statuses",
865
+ kind: "international_organization_special_status",
866
+ },
867
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
868
+ { path: "loading_screen/common/international_organizations", kind: "international_organization" },
869
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
870
+ { path: "loading_screen/common/join_war_rules", kind: "join_war_rule" },
871
+ { path: "loading_screen/common/language_families", kind: "language_family" },
872
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
873
+ { path: "loading_screen/common/languages", kind: "language" },
874
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
875
+ { path: "loading_screen/common/laws", kind: "law" },
876
+ { path: "loading_screen/common/levies", kind: "levy" },
877
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
878
+ { path: "loading_screen/common/location_ranks", kind: "location_rank" },
879
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
880
+ { path: "loading_screen/common/missions", kind: "mission" },
881
+ { path: "loading_screen/common/modifier_icons", kind: "modifier_icon" },
882
+ // requiredLoc: ["MODIFIER_TYPE_NAME_$", "MODIFIER_TYPE_DESC_$"] (CWT localisation block, unverified against vanilla)
883
+ { path: "loading_screen/common/modifier_type_definitions", kind: "modifier_type" },
884
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
885
+ { path: "loading_screen/common/movements", kind: "movement" },
886
+ // requiredLoc: ["$", "$_flavour"] (CWT localisation block, unverified against vanilla)
887
+ { path: "loading_screen/common/music_player_tracks", kind: "music_player_track" },
888
+ { path: "loading_screen/common/on_action", kind: "on_action" },
889
+ // requiredLoc: ["$", "$_desc", "$_simple"] (CWT localisation block, unverified against vanilla)
890
+ { path: "loading_screen/common/parliament_agendas", kind: "parliament_agenda" },
891
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
892
+ { path: "loading_screen/common/parliament_issues", kind: "parliament_issue" },
893
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
894
+ { path: "loading_screen/common/parliament_types", kind: "parliament_type" },
895
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
896
+ { path: "loading_screen/common/peace_treaties", kind: "peace_treaty" },
897
+ { path: "loading_screen/common/persistent_dna", kind: "persistent_dna" },
898
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
899
+ { path: "loading_screen/common/pop_types", kind: "pop_type" },
900
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
901
+ { path: "loading_screen/common/prices", kind: "price" },
902
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
903
+ { path: "loading_screen/common/production_methods", kind: "production_method" },
904
+ { path: "loading_screen/common/rebel_demands", kind: "rebel_demand" },
905
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
906
+ { path: "loading_screen/common/recruitment_method", kind: "recruitment_method" },
907
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
908
+ { path: "loading_screen/common/regencies", kind: "regency" },
909
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
910
+ { path: "loading_screen/common/religion_groups", kind: "religion_group" },
911
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
912
+ { path: "loading_screen/common/religions", kind: "religion" },
913
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
914
+ { path: "loading_screen/common/religious_aspects", kind: "religious_aspect" },
915
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
916
+ { path: "loading_screen/common/religious_factions", kind: "religious_faction" },
917
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
918
+ { path: "loading_screen/common/religious_figures", kind: "religious_figure" },
919
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
920
+ { path: "loading_screen/common/religious_focuses", kind: "religious_focus" },
921
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
922
+ { path: "loading_screen/common/religious_schools", kind: "religious_school" },
923
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
924
+ { path: "loading_screen/common/resolutions", kind: "resolution" },
925
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
926
+ { path: "loading_screen/common/rival_criteria", kind: "rival_criteria" },
927
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
928
+ { path: "loading_screen/common/road_types", kind: "road_type" },
929
+ { path: "loading_screen/common/scenarios", kind: "scenario" },
930
+ { path: "loading_screen/common/script_values", kind: "script_value" },
931
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
932
+ { path: "loading_screen/common/scriptable_hints", kind: "scriptable_hint" },
933
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
934
+ { path: "loading_screen/common/scripted_country_names", kind: "scripted_country_name" },
935
+ { path: "loading_screen/common/scripted_diplomatic_objectives", kind: "scripted_diplomatic_objective" },
936
+ { path: "loading_screen/common/scripted_effects", kind: "scripted_effect" },
937
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
938
+ { path: "loading_screen/common/scripted_geography", kind: "scripted_geography" },
939
+ { path: "loading_screen/common/scripted_guis", kind: "scripted_gui" },
940
+ { path: "loading_screen/common/scripted_lists", kind: "scripted_list" },
941
+ // requiredLoc: ["$_relation", "$_relation_desc"] (CWT localisation block, unverified against vanilla)
942
+ { path: "loading_screen/common/scripted_relations", kind: "scripted_relation" },
943
+ { path: "loading_screen/common/scripted_triggers", kind: "scripted_trigger" },
944
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
945
+ { path: "loading_screen/common/situations", kind: "situation" },
946
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
947
+ { path: "loading_screen/common/societal_values", kind: "societal_value" },
948
+ // requiredLoc: ["STATIC_MODIFIER_NAME_$"] (CWT localisation block, unverified against vanilla)
949
+ { path: "loading_screen/common/static_modifiers", kind: "static_modifier" },
950
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
951
+ { path: "loading_screen/common/subject_military_stances", kind: "subject_military_stance" },
952
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
953
+ { path: "loading_screen/common/subject_types", kind: "subject_type" },
954
+ { path: "loading_screen/common/tests", kind: "test" },
955
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
956
+ { path: "loading_screen/common/topography", kind: "topography" },
957
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
958
+ { path: "loading_screen/common/town_rights", kind: "town_right" },
959
+ { path: "loading_screen/common/town_setups", kind: "town_setup" },
960
+ { path: "loading_screen/common/trait_flavor", kind: "trait_flavor" },
961
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
962
+ { path: "loading_screen/common/traits", kind: "trait" },
963
+ { path: "loading_screen/common/trigger_localization", kind: "trigger_localization" },
964
+ { path: "loading_screen/common/tutorial_lesson_chains", kind: "tutorial_lesson_chain" },
965
+ { path: "loading_screen/common/tutorial_lessons", kind: "tutorial_lesson" },
966
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
967
+ { path: "loading_screen/common/unit_abilities", kind: "unit_ability" },
968
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
969
+ { path: "loading_screen/common/unit_categories", kind: "unit_category" },
970
+ // requiredLoc: ["$"] (CWT localisation block, unverified against vanilla)
971
+ { path: "loading_screen/common/unit_formation_preference", kind: "unit_formation_preference" },
972
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
973
+ { path: "loading_screen/common/unit_types", kind: "unit_type" },
974
+ // requiredLoc: ["$", "$_desc"] (CWT localisation block, unverified against vanilla)
975
+ { path: "loading_screen/common/vegetation", kind: "vegetation" },
976
+ // requiredLoc: ["war_goal_$"] (CWT localisation block, unverified against vanilla)
977
+ { path: "loading_screen/common/wargoals", kind: "war_goal" },
978
+ // requiredLoc: ["title", "desc"] (CWT localisation block, unverified against vanilla)
979
+ { path: "loading_screen/events", kind: "event", extraction: "event-id" },
980
+ { path: "loading_screen/localization", kind: "loc_key", ext: ".yml", extraction: "loc-key" },
981
+ // requiredLoc: ["mapmode_$_name", "mapmode_$"] (CWT localisation block, unverified against vanilla)
982
+ { path: "loading_screen/map/map_modes", kind: "map_mode" },
983
+ // requiredLoc: ["$", "$_ADJ"] (CWT localisation block, unverified against vanilla)
984
+ { path: "loading_screen/setup/countries", kind: "country" },
985
+ ];
986
+
987
+ // Not covered (importer skipped): CWT type constructs with no equivalent among
988
+ // the five NameExtraction modes. Importing them would yield wrong definition
989
+ // names rather than fewer, so they are dropped until a matching mode exists.
990
+ // - achievement_group (config/common/achievement_groups.cwt): name_field = name (name comes from a body field, not the top-level key)
991
+ // - attribute_column (config/common/attribute_columns.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
992
+ // - unique_production_method (config/common/building_types.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
993
+ // - coat_of_arm_template (config/common/coat_of_arms/coat_of_arms.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
994
+ // - coat_of_arms_template_list (config/common/coat_of_arms/template_lists.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
995
+ // - pattern_texture_list (config/common/coat_of_arms/template_lists.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
996
+ // - color_list (config/common/coat_of_arms/template_lists.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
997
+ // - textured_emblem_texture_list (config/common/coat_of_arms/template_lists.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
998
+ // - colored_emblem_texture_list (config/common/coat_of_arms/template_lists.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
999
+ // - define (config/common/defines.cwt): skip_root_key = any (definitions nest one level below the file root)
1000
+ // - game_rule (config/common/game_rules.cwt): skip_root_key = any (definitions nest one level below the file root)
1001
+ // - accessory_gene (config/common/genes/accessory_genes.cwt): skip_root_key = accessory_genes (definitions nest one level below the file root)
1002
+ // - special_accessory_gene (config/common/genes/accessory_genes.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1003
+ // - age_preset (config/common/genes/age_presets.cwt): skip_root_key = age_presets (definitions nest one level below the file root)
1004
+ // - color_gene (config/common/genes/color_genes.cwt): skip_root_key = color_genes (definitions nest one level below the file root)
1005
+ // - morph_gene (config/common/genes/morph_genes.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1006
+ // - special_morph_gene (config/common/genes/morph_genes.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1007
+ // - omen (config/common/gods.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1008
+ // - dialect (config/common/languages.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1009
+ // - named_color (config/common/named_colors.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1010
+ // - inline_scripted_effect (config/common/scripted_effects.cwt): type_key_prefix = scripted_effect (only prefixed keys are definitions)
1011
+ // - inline_scripted_trigger (config/common/scripted_triggers.cwt): type_key_prefix = scripted_trigger (only prefixed keys are definitions)
1012
+ // - event_namespace (config/events/event_namespaces.cwt): name_field = - (name comes from a body field, not the top-level key)
1013
+ // - font_definition (config/fonts/fonts.cwt): name_field = name (name comes from a body field, not the top-level key)
1014
+ // - dynamic_game_object (config/gfx/map/dynamic_game_objects.cwt): name_field = name (name comes from a body field, not the top-level key)
1015
+ // - entity (config/gfx/models/entity.cwt): name_field = name (name comes from a body field, not the top-level key)
1016
+ // - pdxmesh (config/gfx/models/pdxmesh.cwt): name_field = name (name comes from a body field, not the top-level key)
1017
+ // - text_format (config/gui/text_formats.cwt): name_field = name (name comes from a body field, not the top-level key)
1018
+ // - text_icon (config/gui/text_icons.cwt): name_field = icon (name comes from a body field, not the top-level key)
1019
+ // - continent (config/map_data/definitions.cwt): path_file = definitions.txt (one file, not a folder scan)
1020
+ // - sub_continent (config/map_data/definitions.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1021
+ // - region (config/map_data/definitions.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1022
+ // - area (config/map_data/definitions.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1023
+ // - province (config/map_data/definitions.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1024
+ // - character (config/setup/start/character_db.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1025
+ // - colony_manager (config/setup/start/colony_manager.cwt): ## type_key_filter = colony_manager (only that literal root key is a definition)
1026
+ // - country_setup (config/setup/start/country_setup.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1027
+ // - current_age (config/setup/start/country_setup.cwt): ## type_key_filter = current_age (only that literal root key is a definition)
1028
+ // - development (config/setup/start/development.cwt): ## type_key_filter = development (only that literal root key is a definition)
1029
+ // - diplomacy_manager (config/setup/start/diplomacy_manager.cwt): ## type_key_filter = diplomacy_manager (only that literal root key is a definition)
1030
+ // - disease_outbreak_manager (config/setup/start/disease_outbreak_manager.cwt): ## type_key_filter = disease_outbreak_manager (only that literal root key is a definition)
1031
+ // - dynasty (config/setup/start/dynasty_manager.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1032
+ // - exploration_manager (config/setup/start/exploration_manager.cwt): ## type_key_filter = exploration_manager (only that literal root key is a definition)
1033
+ // - institution_manager (config/setup/start/institution_manager.cwt): skip_root_key = { ... } (definitions nest one level below the file root)
1034
+ // - international_organization_manager (config/setup/start/international_organization_manager.cwt): ## type_key_filter = international_organization_manager (only that literal root key is a definition)
1035
+ // - locations (config/setup/start/locations.cwt): ## type_key_filter = locations (only that literal root key is a definition)
1036
+ // - market_manager (config/setup/start/market_manager.cwt): ## type_key_filter = market_manager (only that literal root key is a definition)
1037
+ // - religion_manager (config/setup/start/religion_manager.cwt): ## type_key_filter = religion_manager (only that literal root key is a definition)
1038
+ // - road_network (config/setup/start/road_network.cwt): ## type_key_filter = road_network (only that literal root key is a definition)
1039
+ // - situation_manager (config/setup/start/situation_manager.cwt): ## type_key_filter = situation_manager (only that literal root key is a definition)
1040
+ // - townrights_manager (config/setup/start/town_rights.cwt): ## type_key_filter = townrights_manager (only that literal root key is a definition)
1041
+ // - unit_manager (config/setup/start/unit_manager.cwt): ## type_key_filter = unit_manager (only that literal root key is a definition)
1042
+ // - war_manager (config/setup/start/war_manager.cwt): ## type_key_filter = war_manager (only that literal root key is a definition)
1043
+ // - work_of_art_manager (config/setup/start/work_of_art_manager.cwt): ## type_key_filter = work_of_art_manager (only that literal root key is a definition)