@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,2195 @@
1
+ {
2
+ "globalPromotes": {
3
+ "Promote": null,
4
+ "ACTIVE_COUNCIL_TASK": "ActiveCouncilTask",
5
+ "ACTIVITY": "Activity",
6
+ "ACTOR": "Character",
7
+ "ARMY": "Army",
8
+ "ARMY_REGIMENT": "ArmyRegiment",
9
+ "ARTIFACT": "Artifact",
10
+ "ATTACKER": "Character",
11
+ "AccessCouncilWindow": "CouncilWindow",
12
+ "AccessCourtWindow": "CourtWindow",
13
+ "AccessGameRules": "JominiGameRules",
14
+ "AccessLocalPlayerCachedData": "LocalPlayerCachedData",
15
+ "AccessLogViewer": "LogViewer",
16
+ "AccessMessageFeedHandler": "MessageFeedHandler",
17
+ "AccessMyRealmWindow": "MyRealmWindow",
18
+ "AccessTopBar": "InGameTopbar",
19
+ "Application": "Application",
20
+ "BOOKMARK_CHARACTER": "BookmarkCharacter",
21
+ "BUILDING": "Building",
22
+ "CHARACTER": "Character",
23
+ "CLAIMANT": "Character",
24
+ "COUNCIL_POSITION_TYPE": "CouncilPositionType",
25
+ "COUNCIL_TASK": "ActiveCouncilTask",
26
+ "COUNCIL_TASK_TYPE": "CouncilTaskType",
27
+ "COUNTY": "County",
28
+ "COURT_POSITION": "CourtPosition",
29
+ "COURT_POSITION_TYPE": "CourtPositionType",
30
+ "CULTURE": "Culture",
31
+ "CULTURE_PILLAR": "CulturePillar",
32
+ "CULTURE_TRADITION": "CultureTradition",
33
+ "DATE": "Date",
34
+ "DATE_MAX": "Date",
35
+ "DATE_MIN": "Date",
36
+ "DEFENDER": "Character",
37
+ "DYNASTY": "Dynasty",
38
+ "DYNASTY_HOUSE": "DynastyHouse",
39
+ "DYNASTY_LEGACY": "DynastyLegacy",
40
+ "DYNASTY_PERK": "DynastyPerk",
41
+ "ERA": "CultureEra",
42
+ "EmptyScope": "TopScope",
43
+ "FACTION": "Faction",
44
+ "FAITH": "Faith",
45
+ "FAITH_DOCTRINE": "FaithDoctrine",
46
+ "FOCUS": "FocusType",
47
+ "GAME_RULE": "GameRule",
48
+ "GAME_RULE_SETTING": "GameRuleSetting",
49
+ "GOVERNMENT": "GovernmentType",
50
+ "GOVERNMENT_TYPE": "GovernmentType",
51
+ "GREAT_HOLY_WAR": "GreatHolyWar",
52
+ "GetActivityType": "ActivityType",
53
+ "GetArtifactType": "ArtifactType",
54
+ "GetArtifactVisualType": "ArtifactVisualType",
55
+ "GetBookmark": "Bookmark",
56
+ "GetBookmarkPortrait": "BookmarkPortrait",
57
+ "GetBuilding": "Building",
58
+ "GetCasusBelliType": "CasusBelliType",
59
+ "GetCharacterInteraction": "CharacterInteraction",
60
+ "GetCharacterInteractionCategory": "CharacterInteractionCategory",
61
+ "GetCharacterInteractionCategoryByIndex": "CharacterInteractionCategory",
62
+ "GetCombatEffect": "CombatEffect",
63
+ "GetCouncilPositionType": "CouncilPositionType",
64
+ "GetCouncilTaskType": "CouncilTaskType",
65
+ "GetCourtAmenitiesSetting": "CourtAmenitiesSetting",
66
+ "GetCourtGrandeurDiffFromExpectedLevelModifier": "StaticModifier",
67
+ "GetCourtGrandeurLevelModifier": "StaticModifier",
68
+ "GetCourtPositionCategory": "CourtPositionCategory",
69
+ "GetCourtPositionType": "CourtPositionType",
70
+ "GetCourtType": "CourtType",
71
+ "GetCultureEraType": "CultureEraType",
72
+ "GetCultureInnovationType": "CultureInnovationType",
73
+ "GetCulturePillar": "CulturePillar",
74
+ "GetCultureTemplate": "CultureTemplate",
75
+ "GetCultureTradition": "CultureTradition",
76
+ "GetCurrentDate": "Date",
77
+ "GetDecision": "Decision",
78
+ "GetDecisionWithKey": "Decision",
79
+ "GetDeepestTooltipInfo": "TooltipInfo",
80
+ "GetDoctrine": "FaithDoctrine",
81
+ "GetDynastyByID": "Dynasty",
82
+ "GetDynastyHouseByID": "DynastyHouse",
83
+ "GetDynastyLegacy": "DynastyLegacy",
84
+ "GetDynastyPerk": "DynastyPerk",
85
+ "GetDynastyTemplate": "DynastyTemplate",
86
+ "GetFaithByKey": "Faith",
87
+ "GetFaithDoctrine": "FaithDoctrine",
88
+ "GetFaithDoctrineGroup": "FaithDoctrineGroup",
89
+ "GetFocus": "FocusType",
90
+ "GetFocusType": "FocusType",
91
+ "GetGameRules": "JominiGameRules",
92
+ "GetGeographicalRegion": "GeographicalRegion",
93
+ "GetGlobalVariable": "Scope",
94
+ "GetGovernment": "GovernmentType",
95
+ "GetGovernmentType": "GovernmentType",
96
+ "GetHoldingType": "HoldingType",
97
+ "GetHolySite": "HolySite",
98
+ "GetIllustration": "Illustration",
99
+ "GetImportantActionType": "ImportantActionType",
100
+ "GetInspirationType": "InspirationType",
101
+ "GetInventorySlotType": "InventorySlotType",
102
+ "GetLandedTitpleTemplate": "LandedTitpleTemplate",
103
+ "GetLaw": "Law",
104
+ "GetLawGroup": "LawGroup",
105
+ "GetLifestyle": "Lifestyle",
106
+ "GetMaA": "MenAtArmsType",
107
+ "GetMenAtArmsType": "MenAtArmsType",
108
+ "GetMessageFeedHandler": "MessageFeedHandler",
109
+ "GetMessageType": "MessageType",
110
+ "GetModifier": "StaticModifier",
111
+ "GetNickname": "Nickname",
112
+ "GetNullCharacter": "Character",
113
+ "GetPerk": "Perk",
114
+ "GetPlayer": "Character",
115
+ "GetPlayerArmyComposition": "ArmyComposition",
116
+ "GetRelation": "ScriptedRelation",
117
+ "GetReligionByKey": "Religion",
118
+ "GetReligionFamily": "ReligionFamily",
119
+ "GetRoyalCourtHoveredArtifact": "Artifact",
120
+ "GetRoyalCourtHoveredCharacter": "Character",
121
+ "GetRoyalCourtSelectedArtifact": "Artifact",
122
+ "GetRoyalCourtSelectedCharacter": "Character",
123
+ "GetScheme": "SchemeType",
124
+ "GetSchemeType": "SchemeType",
125
+ "GetScriptedCharacterByHistoryID": "Character",
126
+ "GetScriptedGui": "ScriptedGui",
127
+ "GetScriptedRelation": "ScriptedRelation",
128
+ "GetSecretType": "SecretType",
129
+ "GetServerInfo": "ServerInformation",
130
+ "GetStaticModifier": "StaticModifier",
131
+ "GetSuggestionType": "SuggestionType",
132
+ "GetTerrain": "Terrain",
133
+ "GetTitleByKey": "Title",
134
+ "GetTrait": "Trait",
135
+ "GetTraitForIndex": "Trait",
136
+ "GetTraitGroup": "TraitGroup",
137
+ "GetTutorial": "Tutorial",
138
+ "GetVariableSystem": "VariableSystem",
139
+ "GetVassalContractType": "VassalContractType",
140
+ "GuiEditor": "GuiEditor",
141
+ "GuiScope": "TopScope",
142
+ "HISTORY_ENTRY": "HistoryEntry",
143
+ "HOLDING": "Holding",
144
+ "HOLDING_TYPE": "HoldingType",
145
+ "HOLY_ORDER": "HolyOrder",
146
+ "HOOK": "Hook",
147
+ "IMPORTANT_ACTION_ITEM": "ImportantActionItem",
148
+ "INNOVATION": "CultureInnovation",
149
+ "INSPIRATION": "Inspiration",
150
+ "JominiPlayer": "Playable",
151
+ "LAW": "Law",
152
+ "LEFT_ARTIFACT": "Artifact",
153
+ "LEFT_CHARACTER": "Character",
154
+ "LEFT_TITLE": "Title",
155
+ "LIFESTYLE": "Lifestyle",
156
+ "MEN_AT_ARMS_TYPE": "MenAtArmsType",
157
+ "MEN_AT_ARMS_TYPE_2": "MenAtArmsType",
158
+ "MERCENARY": "MercenaryCompany",
159
+ "MODIFIER_ITEM": "ModifierItem",
160
+ "PERK": "Perk",
161
+ "PREV": "Scope",
162
+ "PROVINCE": "Province",
163
+ "RECIPIENT": "Character",
164
+ "REGIMENT": "Regiment",
165
+ "RELATION": "ScriptedRelation",
166
+ "RELIGION": "Religion",
167
+ "RIGHT_ARTIFACT": "Artifact",
168
+ "RIGHT_CHARACTER": "Character",
169
+ "RIGHT_TITLE": "Title",
170
+ "ROOT": "Scope",
171
+ "SCHEME": "Scheme",
172
+ "SCOPE": "TopScope",
173
+ "SECONDARY_ACTOR": "Character",
174
+ "SECONDARY_RECIPIENT": "Character",
175
+ "SECRET": "Secret",
176
+ "SIEGE": "Siege",
177
+ "TARGET_ARMY": "Army",
178
+ "TARGET_CHARACTER": "Character",
179
+ "TARGET_CHARACTER_2": "Character",
180
+ "TARGET_CULTURE": "Culture",
181
+ "TARGET_FAITH": "Faith",
182
+ "TARGET_FAITH_2": "Faith",
183
+ "TARGET_LAW": "Law",
184
+ "TARGET_TITLE": "Title",
185
+ "THIS": "Scope",
186
+ "TITLE": "Title",
187
+ "TITLE_2": "Title",
188
+ "TOKEN_PARAMETER": "TokenParameter",
189
+ "TRAIT": "Trait",
190
+ "TRAIT_2": "Trait",
191
+ "TRAIT_GROUP": "TraitGroup",
192
+ "TRAIT_GROUP_2": "TraitGroup",
193
+ "TUTORIAL": "Tutorial",
194
+ "WAR": "War"
195
+ },
196
+ "globalFunctions": {
197
+ "Function": null,
198
+ "AIWatchWindowsEnabled": "bool",
199
+ "Abs_CFixedPoint": "CFixedPoint",
200
+ "Abs_CFixedPoint64": null,
201
+ "Abs_float": "float",
202
+ "Abs_int32": "int32",
203
+ "AccessSuggestionItems": null,
204
+ "AddTextIf": "CString",
205
+ "AddTextIfNotEmpty": "CString",
206
+ "AddWatchWindow": null,
207
+ "Add_CFixedPoint": "CFixedPoint",
208
+ "Add_CFixedPoint64": null,
209
+ "Add_CVector2f": "CVector2f",
210
+ "Add_float": "float",
211
+ "Add_int32": "int32",
212
+ "Add_uint32": "uint32",
213
+ "And": "bool",
214
+ "AreAchievementsAvailable": "bool",
215
+ "BindFoldOutContext": null,
216
+ "BoolTo1And2": "int32",
217
+ "BoolTo2And1": "int32",
218
+ "CalculateBreakdownItems": null,
219
+ "CanAnyoneUnpause": "bool",
220
+ "CanChangeMapMode": "bool",
221
+ "CanDecreaseGameSpeed": "bool",
222
+ "CanEditSettingsAfterHost": "bool",
223
+ "CanGetAchievements": "bool",
224
+ "CanIncreaseGameSpeed": "bool",
225
+ "CanOpenLobby": "bool",
226
+ "ClearExploringRealms": null,
227
+ "ClearHostError": null,
228
+ "ClearObserver": null,
229
+ "ClearResetReactiveTutorialPopup": null,
230
+ "CloseAllTooltips": null,
231
+ "Concatenate": "CString",
232
+ "Concept": "CString",
233
+ "CopyBuildVersionInfoToClipboard": null,
234
+ "CopyServerID": null,
235
+ "CurrentAndMaxToProgressbarValueInt32": "float",
236
+ "DataModelHasItems": "bool",
237
+ "DefaultOnCharacterClick": null,
238
+ "DefaultOnCharacterRightClick": null,
239
+ "DefaultOnCoatOfArmsClick": null,
240
+ "DefaultOnCoatOfArmsRightClick": null,
241
+ "DefaultOnCultureClick": null,
242
+ "DefaultOnDynastyCoatOfArmsClick": null,
243
+ "DefaultOnDynastyTreeCoatOfArmsClick": null,
244
+ "DefaultOnFaithClick": null,
245
+ "DefaultOnHouseCoatOfArmsClick": null,
246
+ "DefaultOnRaidClick": null,
247
+ "DefaultOnRealmFlagClick": null,
248
+ "DefaultOnRealmFlagRightClick": null,
249
+ "DefaultOnSiegeClick": null,
250
+ "EqualTo_CFixedPoint": "bool",
251
+ "EqualTo_CFixedPoint64": "bool",
252
+ "EqualTo_CVector2f": "bool",
253
+ "EqualTo_float": "bool",
254
+ "EqualTo_int32": "bool",
255
+ "EqualTo_string": "bool",
256
+ "EqualTo_uint32": "bool",
257
+ "ErrorTooltip": "CString",
258
+ "ExecuteConsoleCommand": null,
259
+ "FixedPoint64ToFloat": "float",
260
+ "FixedPoint64ToInt": "int32",
261
+ "FixedPointToFloat": "float",
262
+ "FixedPointToInt": "int32",
263
+ "FixedPointToProgressbarValue": "float",
264
+ "GameHasMultiplePlayers": "bool",
265
+ "GameIsMultiplayer": "bool",
266
+ "GameOverDesc": "CString",
267
+ "GetAchievementsAvailableString": "CString",
268
+ "GetAutosaveName": "CUTF8String",
269
+ "GetBookmarkPortrait": null,
270
+ "GetBuildVersionDescription": "CString",
271
+ "GetBuildVersionDescriptionWithClickToCopy": "CString",
272
+ "GetCanGoToFrontend": "bool",
273
+ "GetCanGoToFrontendDesc": "CString",
274
+ "GetCreditPortraitsForGroup": null,
275
+ "GetCurrentDateStringWithSyncInfo": "CString",
276
+ "GetCurrentDateWithDiff": "CString",
277
+ "GetCurrentDateWithDiffLong": "CString",
278
+ "GetCurrentDateWithDiffShort": "CString",
279
+ "GetCurrentGameSpeed": "int32",
280
+ "GetCurrentGameSpeedText": "CString",
281
+ "GetCurrentLoadingScreen": null,
282
+ "GetDataModelSize": "int32",
283
+ "GetDecreaseSpeedTooltip": "CString",
284
+ "GetDefaultServerName": "CUTF8String",
285
+ "GetDefine": null,
286
+ "GetDefineAtIndex": null,
287
+ "GetDisbandAllTooltip": "CString",
288
+ "GetDummyFemale": null,
289
+ "GetDummyMale": null,
290
+ "GetDynastyPrestigeLevelEffect": "CString",
291
+ "GetDynastyPrestigeLevelName": "CString",
292
+ "GetDynastyPrestigeLevelNext": "CString",
293
+ "GetEducationTraits": null,
294
+ "GetEnumIndex": "CVector2i",
295
+ "GetErrorHoofFrame": "int32",
296
+ "GetEthnicities": null,
297
+ "GetFertility": "CFixedPoint",
298
+ "GetFertilityLevel": "CString",
299
+ "GetGameTimeDifferenceForDiffDays": "CString",
300
+ "GetGameTimeDifferenceForDiffMonths": "CString",
301
+ "GetGameTimeDurationDays": "CString",
302
+ "GetGameTimeDurationMonths": "CString",
303
+ "GetGameVersionDisplay": "CString",
304
+ "GetGameVersionInfo": "CString",
305
+ "GetGameVersionInfoShort": "CString",
306
+ "GetGovernment": null,
307
+ "GetGuiPositionFromPercentCoordinates": null,
308
+ "GetHighlightTint": "CVector4f",
309
+ "GetHostError": "CUTF8String",
310
+ "GetHostilityDescription": "CString",
311
+ "GetHostilityLevelName": "CString",
312
+ "GetIllustration": null,
313
+ "GetIncreaseSpeedTooltip": "CString",
314
+ "GetInvParentScale": "float",
315
+ "GetIsChecked": "bool",
316
+ "GetKnightCount": "int32",
317
+ "GetKnightLimit": "int32",
318
+ "GetKnightLimitBreakdown": "CString",
319
+ "GetLaggingPlayerName": "CString",
320
+ "GetLeadingTroopsBonus": "CString",
321
+ "GetLifestyleTooltipForCharacter": "CString",
322
+ "GetLifestyleTooltipWarnings": "CString",
323
+ "GetLoadTip": "CString",
324
+ "GetLocalPlayerPietyTextIcon": "CString",
325
+ "GetLocalizedDefine": "CString",
326
+ "GetLocalizedDefineAtIndex": "CString",
327
+ "GetMPChecksum": "CString",
328
+ "GetMaxStress": "int32",
329
+ "GetModifier": null,
330
+ "GetNamedValue": "CFixedPoint",
331
+ "GetNullCharacter": null,
332
+ "GetNullCharacterDataModel": null,
333
+ "GetNumberAbove_int32": "int32",
334
+ "GetOpenLobbyTooltip": "CString",
335
+ "GetOtherRulerDesignerTraits": null,
336
+ "GetPausedBy": "CString",
337
+ "GetPersonalityTraits": null,
338
+ "GetPietyLevelDesc": "CString",
339
+ "GetPietyLevelIcon": null,
340
+ "GetPietyLevelName": "CString",
341
+ "GetPlayer": null,
342
+ "GetPlayerArmyComposition": null,
343
+ "GetPlayerBalance": "CFixedPoint",
344
+ "GetPlayerRaiseAllRaidersTooltip": "CString",
345
+ "GetPlayerRaiseAllTooltip": "CString",
346
+ "GetPlayersCount": "int32",
347
+ "GetPortraitTextureFromDna": null,
348
+ "GetPrestigeLevelDesc": "CString",
349
+ "GetPrestigeLevelIcon": null,
350
+ "GetPrestigeLevelName": "CString",
351
+ "GetProgressBarValueMax": "int32",
352
+ "GetProgressBarValueMaxOther": "int32",
353
+ "GetProgressBarValueMaxOtherScaled": "int32",
354
+ "GetProgressBarValueMaxScaled": "int32",
355
+ "GetProgressBarValuePair": "int32",
356
+ "GetRandomFrontendIllustration": null,
357
+ "GetRandomLogInfo": "CString",
358
+ "GetRelation": null,
359
+ "GetResolutionWithAspectRatio": "CVector2f",
360
+ "GetSmartBrushInterpolationNames": null,
361
+ "GetSmartBrushPatternNames": null,
362
+ "GetStringSettingText": "CString",
363
+ "GetTimeAnyoneUnpause": "int32",
364
+ "GetTimeDifferenceWithDays": "CString",
365
+ "GetTraits": null,
366
+ "GetVarTimeRemaining": "int32",
367
+ "GetVassalContractType": null,
368
+ "GetViewHistoryTooltip": "CString",
369
+ "GetZoomLevel": "int32",
370
+ "GfxGetSkins": null,
371
+ "GfxSetActiveSkin": "bool",
372
+ "GfxSkinIsActive": "bool",
373
+ "GoToFrontend": null,
374
+ "GreaterThanOrEqualTo_CFixedPoint": "bool",
375
+ "GreaterThanOrEqualTo_CFixedPoint64": "bool",
376
+ "GreaterThanOrEqualTo_float": "bool",
377
+ "GreaterThanOrEqualTo_int32": "bool",
378
+ "GreaterThanOrEqualTo_uint32": "bool",
379
+ "GreaterThan_CFixedPoint": "bool",
380
+ "GreaterThan_CFixedPoint64": "bool",
381
+ "GreaterThan_float": "bool",
382
+ "GreaterThan_int32": "bool",
383
+ "GreaterThan_uint32": "bool",
384
+ "HasCharacterInteractionCategory": "bool",
385
+ "HasErrors": "bool",
386
+ "HasGameStartedForTheFirstTime": "bool",
387
+ "HasHostError": "bool",
388
+ "HasLowFps": "bool",
389
+ "HasOpenResetReactiveTutorialPopup": "bool",
390
+ "HasViewHistory": "bool",
391
+ "InDebugMode": "bool",
392
+ "InReleaseMode": "bool",
393
+ "IntToFloat": "float",
394
+ "IntToFrameIndex": "int32",
395
+ "IsAutoSaving": "bool",
396
+ "IsBottomLeftWindowOpen": "bool",
397
+ "IsBottomWindowOpen": "bool",
398
+ "IsBuildDebug": "bool",
399
+ "IsCameraRestrictionsEnabled": "bool",
400
+ "IsCenterWindowOpen": "bool",
401
+ "IsContractBlockedFromBeingModified": "bool",
402
+ "IsContractBlockedFromBeingModifiedText": "CString",
403
+ "IsDataModelEmpty": "bool",
404
+ "IsDefaultGUIMode": "bool",
405
+ "IsDesignatedHeir": "bool",
406
+ "IsExploringRealms": "bool",
407
+ "IsGameChecksumOk": "bool",
408
+ "IsGameOver": "bool",
409
+ "IsGamePaused": "bool",
410
+ "IsGameViewOpen": "bool",
411
+ "IsHolyOrderDetailViewShown": "bool",
412
+ "IsHost": "bool",
413
+ "IsInGame": "bool",
414
+ "IsInteractionConfirmationWindowOpen": "bool",
415
+ "IsInteractionMenuOpenForCharacter": "bool",
416
+ "IsIronmanEnabled": "bool",
417
+ "IsLeftWindowOpen": "bool",
418
+ "IsMachineRulerDesigning": "bool",
419
+ "IsManuallyPaused": "bool",
420
+ "IsMapMode": "bool",
421
+ "IsMercenaryCompanyDetailViewShown": "bool",
422
+ "IsObserver": "bool",
423
+ "IsOverviewWindowOpen": "bool",
424
+ "IsPauseMenuShown": "bool",
425
+ "IsPausedByEvent": "bool",
426
+ "IsPausedByMe": "bool",
427
+ "IsPreparationLobby": "bool",
428
+ "IsRightSubwindowOpen": "bool",
429
+ "IsRightWindowNoSidebarOpen": "bool",
430
+ "IsRightWindowOpen": "bool",
431
+ "IsTutorialTagOpen": "bool",
432
+ "JominiAccessPlayerJoinRequests": null,
433
+ "JominiAreAchievementsAvailable": "bool",
434
+ "JominiGetAchievementsNotAvailableString": "CString",
435
+ "JominiGetMultiplayerAccessibleString": "CString",
436
+ "JominiHasPlayerJoinRequests": "bool",
437
+ "JominiIsHostOrLocal": "bool",
438
+ "JominiIsMultiplayerAccessible": "bool",
439
+ "JominiMultiplayerIsCrossplayEnabled": "bool",
440
+ "JominiMultiplayerIsCrossplayFilterAvailable": "bool",
441
+ "JominiPlayer": null,
442
+ "LessThanOrEqualTo_CFixedPoint": "bool",
443
+ "LessThanOrEqualTo_CFixedPoint64": "bool",
444
+ "LessThanOrEqualTo_float": "bool",
445
+ "LessThanOrEqualTo_int32": "bool",
446
+ "LessThanOrEqualTo_uint32": "bool",
447
+ "LessThan_CFixedPoint": "bool",
448
+ "LessThan_CFixedPoint64": "bool",
449
+ "LessThan_float": "bool",
450
+ "LessThan_int32": "bool",
451
+ "LessThan_uint32": "bool",
452
+ "Localize": "CString",
453
+ "MapEditorHasGameMapMode": "bool",
454
+ "Max_CFixedPoint": "CFixedPoint",
455
+ "Max_CFixedPoint64": null,
456
+ "Max_float": "float",
457
+ "Max_int32": "int32",
458
+ "Max_uint32": "uint32",
459
+ "Min_CFixedPoint": "CFixedPoint",
460
+ "Min_CFixedPoint64": null,
461
+ "Min_float": "float",
462
+ "Min_int32": "int32",
463
+ "Min_uint32": "uint32",
464
+ "Multiply_CFixedPoint": "CFixedPoint",
465
+ "Multiply_CFixedPoint64": null,
466
+ "Multiply_CVector2f": "CVector2f",
467
+ "Multiply_float": "float",
468
+ "Multiply_int32": "int32",
469
+ "Multiply_uint32": "uint32",
470
+ "Negate_CFixedPoint": "CFixedPoint",
471
+ "Negate_CFixedPoint64": null,
472
+ "Negate_float": "float",
473
+ "Negate_int32": "int32",
474
+ "Not": "bool",
475
+ "NotEqualTo_CFixedPoint": "bool",
476
+ "NotEqualTo_CFixedPoint64": "bool",
477
+ "NotEqualTo_CVector2f": "bool",
478
+ "NotEqualTo_float": "bool",
479
+ "NotEqualTo_int32": "bool",
480
+ "NotEqualTo_uint32": "bool",
481
+ "NumberOrErrors": "int32",
482
+ "ObjectsEqual": "bool",
483
+ "OnCreateAccount": null,
484
+ "OnDecreaseGameSpeed": null,
485
+ "OnGoToPlayerCapital": null,
486
+ "OnIncreaseGameSpeed": null,
487
+ "OnPause": null,
488
+ "OnPauseMenu": null,
489
+ "OnRaiseEventTroops": null,
490
+ "OnToggleLoginWindow": null,
491
+ "OpenAchievements": null,
492
+ "OpenCharacterInteraction": "bool",
493
+ "OpenDecisionDetailView": null,
494
+ "OpenDesignateHeirWindow": null,
495
+ "OpenDynastyTreeViewFromCharacter": null,
496
+ "OpenDynastyViewFromCharacter": null,
497
+ "OpenEducationFocusView": null,
498
+ "OpenErrorLog": null,
499
+ "OpenFaithConversionWindow": null,
500
+ "OpenFaithCreationWindow": null,
501
+ "OpenFromViewHistory": null,
502
+ "OpenGameRules": null,
503
+ "OpenGreatHolyWarWindow": null,
504
+ "OpenHolyOrderDetailView": null,
505
+ "OpenLifestyleView": null,
506
+ "OpenMercenaryCompanyDetailView": null,
507
+ "OpenSuccessionElectionWindowForTitle": null,
508
+ "OpenSuccessionLawChangeWindow": null,
509
+ "OpenTitleRenamePopup": null,
510
+ "OpenWarWindow": null,
511
+ "Or": "bool",
512
+ "POPSStatusGetLoginStatus": "CUTF8String",
513
+ "POPSStatusIsAccountConnected": "bool",
514
+ "POPSStatusIsLoggedIn": "bool",
515
+ "POPSStatusIsLoggingIn": "bool",
516
+ "POPSStatusIsOffline": "bool",
517
+ "POPSStatusIsSupportConnectedAccount": "bool",
518
+ "POPStatusGetUserEmailMasked": "CUTF8String",
519
+ "POPStatusGetUserName": "CUTF8String",
520
+ "POPStatusIsUserNameEmpty": "bool",
521
+ "PdxClearEditBoxText": null,
522
+ "PdxDumpDataTypes": "bool",
523
+ "PdxGetProfilerNames": null,
524
+ "PdxGetWidgetScreenSize": "CVector2f",
525
+ "PdxGuiDestroyWidget": null,
526
+ "PdxGuiEditorMessageBox": null,
527
+ "PdxGuiInterruptAllAnimations": null,
528
+ "PdxGuiInterruptThenTriggerAllAnimations": null,
529
+ "PdxGuiTriggerAllAnimations": "bool",
530
+ "PdxProfilerFilterNext": null,
531
+ "PdxProfilerFilterPrev": null,
532
+ "PdxProfilerFilterTimers": null,
533
+ "PdxProfilerGetCurrentFrame": "int32",
534
+ "PdxProfilerGetFrameTimeMs": "float",
535
+ "PdxProfilerGetNsPerTick": "float",
536
+ "PdxProfilerGuiGraphLinesEnabled": "bool",
537
+ "PdxProfilerGuiToggleGraphLines": null,
538
+ "PdxProfilerGuiToggleStats": null,
539
+ "PdxProfilerGuiTrackCurrentFrame": null,
540
+ "PdxProfilerGuiWriteFrameCSV": null,
541
+ "PdxProfilerIsRecording": "bool",
542
+ "PdxProfilerSelectThread": null,
543
+ "PdxProfilerSetFrame": null,
544
+ "PdxProfilerToggleRecording": null,
545
+ "PlaySfxEvent": null,
546
+ "PlayerCanDisbandAll": "bool",
547
+ "PlayerCanRaiseAnyRaiderRallyPoint": "bool",
548
+ "PlayerCanRaiseAnyRallyPoint": "bool",
549
+ "PlayerDisbandAll": null,
550
+ "PlayerIsHost": "bool",
551
+ "PlayerRaiseAllRaidRegiments": null,
552
+ "PlayerRaiseAllRegiments": null,
553
+ "PlayerShouldDisbandAll": "bool",
554
+ "RaiseHolyOrder": null,
555
+ "RaiseMercenaryCompany": null,
556
+ "RefreshIllustration": null,
557
+ "ReleaseMode": "bool",
558
+ "ReturnToMenu": null,
559
+ "ScaleToFitElementInside": "float",
560
+ "ScaleToFitElementOutside": "float",
561
+ "SelectEnumWithString": null,
562
+ "SelectLocalization": "CString",
563
+ "Select_CFixedPoint": "CFixedPoint",
564
+ "Select_CFixedPoint64": null,
565
+ "Select_CString": "CString",
566
+ "Select_float": "float",
567
+ "Select_int32": "int32",
568
+ "Select_uint32": "uint32",
569
+ "SetCameraRestrictionsEnabled": null,
570
+ "SetGameSpeed": null,
571
+ "SetIronmanEnabledStatus": null,
572
+ "SetMapMode": null,
573
+ "SetRandomPlayableObserverCharacter": null,
574
+ "ShouldPromptForRulerDesigner": "bool",
575
+ "ShouldShowCharacterDebugInfo": "bool",
576
+ "ShouldShowCharacterTooltips": "bool",
577
+ "ShouldShowSegmentedControlForSetting": "bool",
578
+ "ShowingSuccession": "bool",
579
+ "SinglePlayerShowingPausedSuccession": "bool",
580
+ "SinglePlayerShowingSuccession": "bool",
581
+ "StringIsEmpty": "bool",
582
+ "Subtract_CFixedPoint": "CFixedPoint",
583
+ "Subtract_CFixedPoint64": null,
584
+ "Subtract_CVector2f": "CVector2f",
585
+ "Subtract_float": "float",
586
+ "Subtract_int32": "int32",
587
+ "Subtract_uint32": "uint32",
588
+ "TextureListFormatSize": "CString",
589
+ "TextureListFormatkB": "CString",
590
+ "ToggleCharacter": null,
591
+ "ToggleCulture": null,
592
+ "ToggleEncyclopedia": null,
593
+ "ToggleFaith": null,
594
+ "ToggleGameView": null,
595
+ "ToggleGameViewData": null,
596
+ "ToggleHolyOrderDetailView": null,
597
+ "ToggleLegacy": null,
598
+ "ToggleMapEditorGameMapModeActive": null,
599
+ "ToggleMercenaryCompanyDetailView": null,
600
+ "ToggleOnCoatOfArmsClick": null,
601
+ "TryStartRulerDesigning": null,
602
+ "UsesTimerLocking": "bool",
603
+ "WatchWindowsEnabled": "bool"
604
+ },
605
+ "types": {
606
+ "ActiveCasusBelli": {
607
+ "Function": null,
608
+ "GetAttacker": "Character",
609
+ "GetDefender": "Character",
610
+ "GetFirstTitleTarget": "Title",
611
+ "GetType": "CasusBelliType",
612
+ "AccessSelf": null,
613
+ "Self": null
614
+ },
615
+ "ActiveCouncilTask": {
616
+ "Function": null,
617
+ "GetCouncillor": "Character",
618
+ "GetLocation": "Province",
619
+ "GetPositionType": "CouncilPositionType",
620
+ "GetProgressBreakdown": "ValueBreakdown",
621
+ "GetTargetCourt": "Character",
622
+ "GetTargetProvince": "Province",
623
+ "GetTaskType": "CouncilTaskType",
624
+ "GetTaskTypeOrDefault": "CouncilTaskType",
625
+ "MakeScope": "Scope",
626
+ "AccessSelf": null,
627
+ "CanBeFired": "bool",
628
+ "CanBeReassigned": "bool",
629
+ "GetETA": "CString",
630
+ "GetName": "CString",
631
+ "GetPositionName": "CString",
632
+ "GetPositionNamePossesive": "CString",
633
+ "GetPositionTooltip": "CString",
634
+ "GetProgress": "CFixedPoint",
635
+ "GetProgressFloat": "float",
636
+ "GetProgressMax": "CFixedPoint",
637
+ "GetProgressMaxFloat": "float",
638
+ "GetProgressPie": "float",
639
+ "GetScopes": null,
640
+ "GetTaskEffect": "CString",
641
+ "GetTaskTarget": "CString",
642
+ "GetTaskValueName": "CString",
643
+ "HasCouncillor": "bool",
644
+ "HasMainSkill": "bool",
645
+ "IsAutomaticallyFilled": "bool",
646
+ "IsFrozen": "bool",
647
+ "Self": null
648
+ },
649
+ "Activity": {
650
+ "Function": null,
651
+ "GetLocation": "Province",
652
+ "GetOwner": "Character",
653
+ "GetType": "ActivityType",
654
+ "MakeScope": "Scope",
655
+ "AccessSelf": null,
656
+ "Custom": "CString",
657
+ "GetAccepted": null,
658
+ "GetDeclined": null,
659
+ "GetInvited": null,
660
+ "GetName": "CString",
661
+ "IsActivated": "bool",
662
+ "Self": null,
663
+ "WriteListOfAcceptedGuests": "CString"
664
+ },
665
+ "Army": {
666
+ "Function": null,
667
+ "GetCommander": "Character",
668
+ "GetComposition": "ArmyComposition",
669
+ "GetLocation": "Province",
670
+ "GetOwner": "Character",
671
+ "GetRaid": "Raid",
672
+ "MakeScope": "Scope",
673
+ "AccessSelf": null,
674
+ "CalcQualityLevel": "int32",
675
+ "CommanderIsOwner": "bool",
676
+ "GetAIInfo": "CString",
677
+ "GetActivityFrame": "int32",
678
+ "GetAiCoordinatorId": "int32",
679
+ "GetAiSubUnitStackId": "int32",
680
+ "GetAiUnitStackId": "int32",
681
+ "GetArmyAttrition": "int32",
682
+ "GetArmyAttritionBreakdown": "CString",
683
+ "GetArmyAttritionBreakdownPercentage": "CString",
684
+ "GetArmyAttritionPercentage": "CFixedPoint",
685
+ "GetArmyId": "int32",
686
+ "GetArmyQualityName": "CString",
687
+ "GetArmyStatusIcon": null,
688
+ "GetCombatPredictionForTooltip": "CString",
689
+ "GetCommanderTooltip": "CString",
690
+ "GetDescription": "CString",
691
+ "GetDisembarkPenaltyDays": "int32",
692
+ "GetEmbarkInfoForTooltip": "CString",
693
+ "GetEventTroopsAssociatedWithWarTooltip": "CString",
694
+ "GetGatheringDaysLeft": "int32",
695
+ "GetGatheringProgress": "float",
696
+ "GetLootCap": "CFixedPoint",
697
+ "GetMovementInfoForTooltip": "CString",
698
+ "GetName": "CString",
699
+ "GetNameNoTooltip": "CString",
700
+ "GetRaidLoot": "CFixedPoint",
701
+ "GetRaisingFleetCost": "CFixedPoint",
702
+ "GetSoldierCount": "int32",
703
+ "GetSoldierCountString": "CString",
704
+ "GetSpecialArmyStatus": "CString",
705
+ "GetSupplyDesc": "CString",
706
+ "GetSupplyInfoForTooltip": "CString",
707
+ "GetUnitId": "int32",
708
+ "HasEventTroops": "bool",
709
+ "HasLooterStance": "bool",
710
+ "IsEmbarked": "bool",
711
+ "IsEnemyOrHostileToPlayer": "bool",
712
+ "IsGathering": "bool",
713
+ "IsMoving": "bool",
714
+ "IsNeutralToPlayer": "bool",
715
+ "IsRaidArmy": "bool",
716
+ "IsRaidLootCapped": "bool",
717
+ "IsRecentlyDisembarked": "bool",
718
+ "IsRetreating": "bool",
719
+ "IsSieging": "bool",
720
+ "IsTakingRaidAction": "bool",
721
+ "Self": null
722
+ },
723
+ "Artifact": {
724
+ "Function": null,
725
+ "GetAssociatedTitle": "Title",
726
+ "GetCulture": "Culture",
727
+ "GetHistory": "ArtifactHistory",
728
+ "GetOwner": "Character",
729
+ "MakeScope": "Scope",
730
+ "AccessSelf": null,
731
+ "CanBenefit": "bool",
732
+ "CanBenefitPlayer": "bool",
733
+ "CanPlayerEquip": "bool",
734
+ "CanReforge": "bool",
735
+ "CanReforgeOrRepair": "bool",
736
+ "CanRepair": "bool",
737
+ "Custom": "CString",
738
+ "GetAge": "int32",
739
+ "GetCanBenefitPlayerDesc": "CString",
740
+ "GetCanPlayerEquipDesc": "CString",
741
+ "GetCategory": "CString",
742
+ "GetCreator": null,
743
+ "GetDesc": "CString",
744
+ "GetDurability": "CFixedPoint",
745
+ "GetDurabilityTooltip": "CString",
746
+ "GetFallbackEffects": "CString",
747
+ "GetFeatureText": "CString",
748
+ "GetForgottenSoldiersCount": "int32",
749
+ "GetHouseClaimants": null,
750
+ "GetHouseClaimantsString": "CString",
751
+ "GetID": "uint32",
752
+ "GetIcon": null,
753
+ "GetIconFrame": "int32",
754
+ "GetKills": null,
755
+ "GetMaxDurability": "CFixedPoint",
756
+ "GetModifierEffects": "CString",
757
+ "GetName": "CString",
758
+ "GetNameNoTooltip": "CString",
759
+ "GetPersonalClaimants": null,
760
+ "GetPlayerModifierEffects": "CString",
761
+ "GetRarity": "CString",
762
+ "GetRarityAndSlotType": "CString",
763
+ "GetRarityAndType": "CString",
764
+ "GetRarityColor": "CVector4f",
765
+ "GetReforgeOrRepairTooltip": "CString",
766
+ "GetReforgeTooltip": "CString",
767
+ "GetRepairTooltip": "CString",
768
+ "GetSlotType": "CString",
769
+ "GetType": "CString",
770
+ "GetYearsUntilDecay": "int32",
771
+ "GetYearsUntilHouseClaim": "int32",
772
+ "HasCanBenefit": "bool",
773
+ "HasClaim": "bool",
774
+ "HasFeature": "bool",
775
+ "HasFeatureOfType": "bool",
776
+ "HasImminentHouseClaim": "bool",
777
+ "IsCourtArtifact": "bool",
778
+ "IsDurabilityLow": "bool",
779
+ "IsInventoryArtifact": "bool",
780
+ "IsUnique": "bool",
781
+ "IsValid": "bool",
782
+ "OpenArtifactKills": null,
783
+ "OpenRenameWindow": null,
784
+ "Self": null,
785
+ "ShouldDecay": "bool"
786
+ },
787
+ "Character": {
788
+ "Function": null,
789
+ "GetActiveCouncilTask": "ActiveCouncilTask",
790
+ "GetActiveLawInGroupWithFlag": "Law",
791
+ "GetBeneficiary": "Character",
792
+ "GetBetrothed": "Character",
793
+ "GetBirthDate": "Date",
794
+ "GetCapitalLocation": "Province",
795
+ "GetConcubinist": "Character",
796
+ "GetConsort": "Character",
797
+ "GetConsortOrBetrothed": "Character",
798
+ "GetCouncillorPosition": "ActiveCouncilTask",
799
+ "GetCulture": "Culture",
800
+ "GetCurrentActivity": "Activity",
801
+ "GetCurrentLocation": "Province",
802
+ "GetDeathDate": "Date",
803
+ "GetDesignatedHeir": "Character",
804
+ "GetDynasty": "Dynasty",
805
+ "GetEmployer": "Character",
806
+ "GetFaith": "Faith",
807
+ "GetFather": "Character",
808
+ "GetFocus": "FocusType",
809
+ "GetFocusType": "FocusType",
810
+ "GetGovernment": "GovernmentType",
811
+ "GetHouse": "DynastyHouse",
812
+ "GetImprisonedBy": "Character",
813
+ "GetKiller": "Character",
814
+ "GetKnightArmy": "Army",
815
+ "GetLiege": "Character",
816
+ "GetLiegeEvenWhenDead": "Character",
817
+ "GetLiegeTitleEvenWhenDead": "Title",
818
+ "GetLifestyle": "Lifestyle",
819
+ "GetMother": "Character",
820
+ "GetPlayerHeir": "Character",
821
+ "GetPrimaryHolding": "Title",
822
+ "GetPrimarySpouse": "Character",
823
+ "GetPrimarySpouseOrBetrothed": "Character",
824
+ "GetPrimaryTitle": "Title",
825
+ "GetRaidHostilityEnd": "Date",
826
+ "GetRealFather": "Character",
827
+ "GetRelationOfType": "Character",
828
+ "GetSealCoA": "CoatOfArms",
829
+ "GetTopLiege": "Character",
830
+ "GetVassalContract": "VassalContract",
831
+ "MakeScope": "Scope",
832
+ "AccessSelf": null,
833
+ "CalcUnusedConsortSlots": "int32",
834
+ "CalcUnusedSecondarySpouseSlots": "int32",
835
+ "CalcUnusedSpouseSlots": "int32",
836
+ "CanBePunished": null,
837
+ "CanCustomizePortrait": "bool",
838
+ "CanHaveConsorts": "bool",
839
+ "CanPlayerChangeMyFocus": "bool",
840
+ "CanRaid": "bool",
841
+ "CanRaiseRegiments": null,
842
+ "CanStartRaid": "bool",
843
+ "CharacterKnowsOfKiller": "bool",
844
+ "CourtierWantsToLeaveCourt": "bool",
845
+ "Custom": "CString",
846
+ "Custom2": "CString",
847
+ "Custom2_Title": "CString",
848
+ "GetAIBoldness": "int32",
849
+ "GetAIBoldnessAsAffectedByPlayerDread": null,
850
+ "GetAICompassion": "int32",
851
+ "GetAIEnergy": "int32",
852
+ "GetAIGreed": "int32",
853
+ "GetAIHonor": "int32",
854
+ "GetAIPersonality": "CString",
855
+ "GetAIRationality": "int32",
856
+ "GetAISociability": "int32",
857
+ "GetAIVengefulness": "int32",
858
+ "GetAIZeal": "int32",
859
+ "GetAge": "int32",
860
+ "GetAgeInfo": "CString",
861
+ "GetAiBudgetDescription": "CString",
862
+ "GetAnimatedPortrait": null,
863
+ "GetApprovalReasons": "CString",
864
+ "GetAwayCourtiers": null,
865
+ "GetBalance": null,
866
+ "GetBalanceBreakdown": null,
867
+ "GetBanishReasons": "CString",
868
+ "GetBaseWeight": "int32",
869
+ "GetCachedPortrait": null,
870
+ "GetCharacterRelationCombine": "CString",
871
+ "GetCharacterViewName": null,
872
+ "GetCharacterViewNameNicknamed": null,
873
+ "GetCharacterViewNameNicknamedNoTooltip": null,
874
+ "GetCharacterViewNameNicknamedNoTooltipRegnal": null,
875
+ "GetCharacterViewNameNicknamedOrMe": null,
876
+ "GetCharacterViewNameNicknamedOrMeNoTooltip": null,
877
+ "GetCharacterViewNameNicknamedOrMeNoTooltipRegnal": null,
878
+ "GetCharacterViewNameNicknamedOrMeRegnal": null,
879
+ "GetCharacterViewNameNicknamedPossessive": null,
880
+ "GetCharacterViewNameNicknamedPossessiveNoTooltip": null,
881
+ "GetCharacterViewNameNicknamedPossessiveNoTooltipRegnal": null,
882
+ "GetCharacterViewNameNicknamedPossessiveOrMy": null,
883
+ "GetCharacterViewNameNicknamedPossessiveOrMyNoTooltip": null,
884
+ "GetCharacterViewNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
885
+ "GetCharacterViewNameNicknamedPossessiveOrMyRegnal": null,
886
+ "GetCharacterViewNameNicknamedPossessiveRegnal": null,
887
+ "GetCharacterViewNameNicknamedRegnal": null,
888
+ "GetCharacterViewNameNoTooltip": null,
889
+ "GetCharacterViewNameNoTooltipRegnal": null,
890
+ "GetCharacterViewNameOrMe": null,
891
+ "GetCharacterViewNameOrMeNoTooltip": null,
892
+ "GetCharacterViewNameOrMeNoTooltipRegnal": null,
893
+ "GetCharacterViewNameOrMeRegnal": null,
894
+ "GetCharacterViewNamePossessive": null,
895
+ "GetCharacterViewNamePossessiveNoTooltip": null,
896
+ "GetCharacterViewNamePossessiveNoTooltipRegnal": null,
897
+ "GetCharacterViewNamePossessiveOrMy": null,
898
+ "GetCharacterViewNamePossessiveOrMyNoTooltip": null,
899
+ "GetCharacterViewNamePossessiveOrMyNoTooltipRegnal": null,
900
+ "GetCharacterViewNamePossessiveOrMyRegnal": null,
901
+ "GetCharacterViewNamePossessiveRegnal": null,
902
+ "GetCharacterViewNameRegnal": null,
903
+ "GetCommanderAdvantage": "int32",
904
+ "GetCommanderAdvantageDesc": "CString",
905
+ "GetCommanderLeadingOwnAdvantageDesc": "CString",
906
+ "GetConcubineName": null,
907
+ "GetContextTooltip": "CString",
908
+ "GetCouncilTitle": "CString",
909
+ "GetCouncilTitleFirstName": null,
910
+ "GetCouncilTitleFirstNameNicknamed": null,
911
+ "GetCouncilTitleFirstNameNicknamedNoTooltip": null,
912
+ "GetCouncilTitleFirstNameNicknamedNoTooltipRegnal": null,
913
+ "GetCouncilTitleFirstNameNicknamedOrMe": null,
914
+ "GetCouncilTitleFirstNameNicknamedOrMeNoTooltip": null,
915
+ "GetCouncilTitleFirstNameNicknamedOrMeNoTooltipRegnal": null,
916
+ "GetCouncilTitleFirstNameNicknamedOrMeRegnal": null,
917
+ "GetCouncilTitleFirstNameNicknamedPossessive": null,
918
+ "GetCouncilTitleFirstNameNicknamedPossessiveNoTooltip": null,
919
+ "GetCouncilTitleFirstNameNicknamedPossessiveNoTooltipRegnal": null,
920
+ "GetCouncilTitleFirstNameNicknamedPossessiveOrMy": null,
921
+ "GetCouncilTitleFirstNameNicknamedPossessiveOrMyNoTooltip": null,
922
+ "GetCouncilTitleFirstNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
923
+ "GetCouncilTitleFirstNameNicknamedPossessiveOrMyRegnal": null,
924
+ "GetCouncilTitleFirstNameNicknamedPossessiveRegnal": null,
925
+ "GetCouncilTitleFirstNameNicknamedRegnal": null,
926
+ "GetCouncilTitleFirstNameNoTooltip": null,
927
+ "GetCouncilTitleFirstNameNoTooltipRegnal": null,
928
+ "GetCouncilTitleFirstNameOrMe": null,
929
+ "GetCouncilTitleFirstNameOrMeNoTooltip": null,
930
+ "GetCouncilTitleFirstNameOrMeNoTooltipRegnal": null,
931
+ "GetCouncilTitleFirstNameOrMeRegnal": null,
932
+ "GetCouncilTitleFirstNamePossessive": null,
933
+ "GetCouncilTitleFirstNamePossessiveNoTooltip": null,
934
+ "GetCouncilTitleFirstNamePossessiveNoTooltipRegnal": null,
935
+ "GetCouncilTitleFirstNamePossessiveOrMy": null,
936
+ "GetCouncilTitleFirstNamePossessiveOrMyNoTooltip": null,
937
+ "GetCouncilTitleFirstNamePossessiveOrMyNoTooltipRegnal": null,
938
+ "GetCouncilTitleFirstNamePossessiveOrMyRegnal": null,
939
+ "GetCouncilTitleFirstNamePossessiveRegnal": null,
940
+ "GetCouncilTitleFirstNameRegnal": null,
941
+ "GetCouncilTitleForPosition": "CString",
942
+ "GetCouncilTitleForPositionPossessive": "CString",
943
+ "GetCouncilTitlePossessive": "CString",
944
+ "GetCouncillorModifierDesc": "CString",
945
+ "GetCourt": null,
946
+ "GetCourtierLeaveDescription": "CString",
947
+ "GetCurrentWeight": "int32",
948
+ "GetDeathOrBirthDateInfo": "CString",
949
+ "GetDeathReason": "CString",
950
+ "GetDeathReasonHideKiller": "CString",
951
+ "GetDeathReasonIcon": null,
952
+ "GetDebtModifierDescription": "CString",
953
+ "GetDebugCourtierLeaveReasons": "CString",
954
+ "GetDebugGuestArriveReasons": "CString",
955
+ "GetDebugGuestArriveStatus": "bool",
956
+ "GetDebugGuestScore": "CFixedPoint",
957
+ "GetDebugTooltip": "CString",
958
+ "GetDefaultRealmFlagTooltip": "CString",
959
+ "GetDefaultRealmFlagTooltipNoClickInfo": "CString",
960
+ "GetDefaultRealmFlagTooltipPrimaryTitleClickInfo": "CString",
961
+ "GetDesiredNumberOfConsorts": "int32",
962
+ "GetDifficultyInfoText": null,
963
+ "GetDivorceReasons": "CString",
964
+ "GetDomainLimit": "int32",
965
+ "GetDomainLimitBreakdown": "CString",
966
+ "GetDomainLimitGracePeriodHoldings": "CString",
967
+ "GetDomainLimitOverrunWithGracePeriod": "int32",
968
+ "GetDomainLimitOverrunWithoutGracePeriod": "int32",
969
+ "GetDomainLimitTooltip": "CString",
970
+ "GetDomainSize": "int32",
971
+ "GetDomainSizeWithGracePeriod": "int32",
972
+ "GetDread": "CFixedPoint",
973
+ "GetDreadBreakdown": null,
974
+ "GetDreadEffectIconFrameFor": "int32",
975
+ "GetDreadEffectTooltipFor": "CString",
976
+ "GetDynastyHeadRelationFrame": "int32",
977
+ "GetDynastyHeadRelationTooltip": "CString",
978
+ "GetDynastyHeadTooltip": "CString",
979
+ "GetDynastyHouseName": "CString",
980
+ "GetDynastyHouseNameNoTooltip": "CString",
981
+ "GetDynastyMembersText": "CString",
982
+ "GetDynastyName": "CString",
983
+ "GetDynastyNameNoTooltip": "CString",
984
+ "GetExecuteReasons": "CString",
985
+ "GetFertility": "CFixedPoint",
986
+ "GetFirstName": null,
987
+ "GetFirstNameBase": "CString",
988
+ "GetFirstNameNicknamed": null,
989
+ "GetFirstNameNicknamedNoTooltip": null,
990
+ "GetFirstNameNicknamedNoTooltipRegnal": null,
991
+ "GetFirstNameNicknamedOrMe": null,
992
+ "GetFirstNameNicknamedOrMeNoTooltip": null,
993
+ "GetFirstNameNicknamedOrMeNoTooltipRegnal": null,
994
+ "GetFirstNameNicknamedOrMeRegnal": null,
995
+ "GetFirstNameNicknamedPossessive": null,
996
+ "GetFirstNameNicknamedPossessiveNoTooltip": null,
997
+ "GetFirstNameNicknamedPossessiveNoTooltipRegnal": null,
998
+ "GetFirstNameNicknamedPossessiveOrMy": null,
999
+ "GetFirstNameNicknamedPossessiveOrMyNoTooltip": null,
1000
+ "GetFirstNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
1001
+ "GetFirstNameNicknamedPossessiveOrMyRegnal": null,
1002
+ "GetFirstNameNicknamedPossessiveRegnal": null,
1003
+ "GetFirstNameNicknamedRegnal": null,
1004
+ "GetFirstNameNoTooltip": null,
1005
+ "GetFirstNameNoTooltipRegnal": null,
1006
+ "GetFirstNameOrMe": null,
1007
+ "GetFirstNameOrMeNoTooltip": null,
1008
+ "GetFirstNameOrMeNoTooltipRegnal": null,
1009
+ "GetFirstNameOrMeRegnal": null,
1010
+ "GetFirstNamePossessive": null,
1011
+ "GetFirstNamePossessiveNoTooltip": null,
1012
+ "GetFirstNamePossessiveNoTooltipRegnal": null,
1013
+ "GetFirstNamePossessiveOrMy": null,
1014
+ "GetFirstNamePossessiveOrMyNoTooltip": null,
1015
+ "GetFirstNamePossessiveOrMyNoTooltipRegnal": null,
1016
+ "GetFirstNamePossessiveOrMyRegnal": null,
1017
+ "GetFirstNamePossessiveRegnal": null,
1018
+ "GetFirstNameRegnal": null,
1019
+ "GetFullName": null,
1020
+ "GetFullNameNicknamed": null,
1021
+ "GetFullNameNicknamedNoTooltip": null,
1022
+ "GetFullNameNicknamedNoTooltipRegnal": null,
1023
+ "GetFullNameNicknamedOrMe": null,
1024
+ "GetFullNameNicknamedOrMeNoTooltip": null,
1025
+ "GetFullNameNicknamedOrMeNoTooltipRegnal": null,
1026
+ "GetFullNameNicknamedOrMeRegnal": null,
1027
+ "GetFullNameNicknamedPossessive": null,
1028
+ "GetFullNameNicknamedPossessiveNoTooltip": null,
1029
+ "GetFullNameNicknamedPossessiveNoTooltipRegnal": null,
1030
+ "GetFullNameNicknamedPossessiveOrMy": null,
1031
+ "GetFullNameNicknamedPossessiveOrMyNoTooltip": null,
1032
+ "GetFullNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
1033
+ "GetFullNameNicknamedPossessiveOrMyRegnal": null,
1034
+ "GetFullNameNicknamedPossessiveRegnal": null,
1035
+ "GetFullNameNicknamedRegnal": null,
1036
+ "GetFullNameNoTooltip": null,
1037
+ "GetFullNameNoTooltipRegnal": null,
1038
+ "GetFullNameOrMe": null,
1039
+ "GetFullNameOrMeNoTooltip": null,
1040
+ "GetFullNameOrMeNoTooltipRegnal": null,
1041
+ "GetFullNameOrMeRegnal": null,
1042
+ "GetFullNamePossessive": null,
1043
+ "GetFullNamePossessiveNoTooltip": null,
1044
+ "GetFullNamePossessiveNoTooltipRegnal": null,
1045
+ "GetFullNamePossessiveOrMy": null,
1046
+ "GetFullNamePossessiveOrMyNoTooltip": null,
1047
+ "GetFullNamePossessiveOrMyNoTooltipRegnal": null,
1048
+ "GetFullNamePossessiveOrMyRegnal": null,
1049
+ "GetFullNamePossessiveRegnal": null,
1050
+ "GetFullNameRegnal": null,
1051
+ "GetGlowTintColor": "CVector4f",
1052
+ "GetGold": null,
1053
+ "GetGoldText": null,
1054
+ "GetGoldTextNoIcon": null,
1055
+ "GetGoldTooltipWithBalance": null,
1056
+ "GetHealth": "CFixedPoint",
1057
+ "GetHealthIconFrame": null,
1058
+ "GetHealthInfo": null,
1059
+ "GetHeirToDesc": "CString",
1060
+ "GetHeldBaroniesCount": "int32",
1061
+ "GetHerHim": null,
1062
+ "GetHerHis": null,
1063
+ "GetHerHisMy": null,
1064
+ "GetHersHis": null,
1065
+ "GetHerselfHimself": null,
1066
+ "GetHookOrHookableSecretsFrame": null,
1067
+ "GetHostileRaiders": null,
1068
+ "GetHumanName": "CString",
1069
+ "GetHumanNameIfNotLocalPlayer": "CString",
1070
+ "GetID": null,
1071
+ "GetImprisonmentReasons": "CString",
1072
+ "GetIncomeAsReligiousHead": "CFixedPoint",
1073
+ "GetIncomeBreakdownAsReligiousHead": "CString",
1074
+ "GetIncomeBreakdownFromTheocraticLease": "CString",
1075
+ "GetIncomeFromTheocraticLease": "CFixedPoint",
1076
+ "GetKills": null,
1077
+ "GetKnightBreakdown": null,
1078
+ "GetKnightCount": null,
1079
+ "GetKnightEffectiveness": "CFixedPoint",
1080
+ "GetKnightEffectivenessBreakdown": "CString",
1081
+ "GetLadyLord": null,
1082
+ "GetLeviesBreakdownFromTheocraticLease": "CString",
1083
+ "GetLeviesFromTheocraticLease": "int32",
1084
+ "GetLifestyleExperienceProgress": "float",
1085
+ "GetLifestyleXp": "CFixedPoint",
1086
+ "GetLocalizedText": "CString",
1087
+ "GetLocationDesc": null,
1088
+ "GetMaxConsorts": "int32",
1089
+ "GetMaxIncomeFromTheocraticLease": "CFixedPoint",
1090
+ "GetMaxLeviesFromTheocraticLease": "int32",
1091
+ "GetMaxMilitaryStrength": "CFixedPoint",
1092
+ "GetMaxSpouses": "int32",
1093
+ "GetMilitaryStrengthPercentGUI": null,
1094
+ "GetMilitaryStrengthText": null,
1095
+ "GetModifierDescForTask": "CString",
1096
+ "GetModifierDescription": "CString",
1097
+ "GetMotherFather": null,
1098
+ "GetMyCouncillorsTitle": "CString",
1099
+ "GetName": null,
1100
+ "GetNameNicknamed": null,
1101
+ "GetNameNicknamedNoTooltip": null,
1102
+ "GetNameNicknamedNoTooltipRegnal": null,
1103
+ "GetNameNicknamedOrMe": null,
1104
+ "GetNameNicknamedOrMeNoTooltip": null,
1105
+ "GetNameNicknamedOrMeNoTooltipRegnal": null,
1106
+ "GetNameNicknamedOrMeRegnal": null,
1107
+ "GetNameNicknamedPossessive": null,
1108
+ "GetNameNicknamedPossessiveNoTooltip": null,
1109
+ "GetNameNicknamedPossessiveNoTooltipRegnal": null,
1110
+ "GetNameNicknamedPossessiveOrMy": null,
1111
+ "GetNameNicknamedPossessiveOrMyNoTooltip": null,
1112
+ "GetNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
1113
+ "GetNameNicknamedPossessiveOrMyRegnal": null,
1114
+ "GetNameNicknamedPossessiveRegnal": null,
1115
+ "GetNameNicknamedRegnal": null,
1116
+ "GetNameNoTooltip": null,
1117
+ "GetNameNoTooltipRegnal": null,
1118
+ "GetNameOrMe": null,
1119
+ "GetNameOrMeNoTooltip": null,
1120
+ "GetNameOrMeNoTooltipRegnal": null,
1121
+ "GetNameOrMeRegnal": null,
1122
+ "GetNamePossessive": null,
1123
+ "GetNamePossessiveNoTooltip": null,
1124
+ "GetNamePossessiveNoTooltipRegnal": null,
1125
+ "GetNamePossessiveOrMy": null,
1126
+ "GetNamePossessiveOrMyNoTooltip": null,
1127
+ "GetNamePossessiveOrMyNoTooltipRegnal": null,
1128
+ "GetNamePossessiveOrMyRegnal": null,
1129
+ "GetNamePossessiveRegnal": null,
1130
+ "GetNameRegnal": null,
1131
+ "GetNickname": "CString",
1132
+ "GetNumTitlesFromTheocraticLease": "int32",
1133
+ "GetNumVassalsTowardsLimit": "int32",
1134
+ "GetNumberOfControlledHolySites": "int32",
1135
+ "GetOpinionBreakdownText": "CString",
1136
+ "GetOpinionHeadingText": "CString",
1137
+ "GetOpinionOf": "int32",
1138
+ "GetOpinionOfTint": "CVector4f",
1139
+ "GetOriginalFirstName": "CString",
1140
+ "GetPerkPoints": "int32",
1141
+ "GetPerkPointsUsed": "int32",
1142
+ "GetPiety": "CFixedPoint",
1143
+ "GetPietyLevel": "int32",
1144
+ "GetPietyLevelTexture": null,
1145
+ "GetPietyTooltipWithBalance": "CString",
1146
+ "GetPlaceInSuccession": null,
1147
+ "GetPlayableFrame": "int32",
1148
+ "GetPlayableFrameTooltip": "CString",
1149
+ "GetPlayerDreadEffectIconFrame": null,
1150
+ "GetPlayerDreadEffectTooltip": null,
1151
+ "GetPlayerDynastyRelationFrame": "int32",
1152
+ "GetPlayerDynastyRelationTooltip": "CString",
1153
+ "GetPlayerGuestDescription": "CString",
1154
+ "GetPlayerInteractionName": null,
1155
+ "GetPlayerInteractionTooltip": null,
1156
+ "GetPlayerInteractionValidBlockers": "CString",
1157
+ "GetPlayerInteractionWithTargetCharacterTooltip": "CString",
1158
+ "GetPlayerInteractionWithTargetSecretTooltip": "CString",
1159
+ "GetPlayerInteractionWithTargetTitleName": null,
1160
+ "GetPlayerInteractionWithTargetTitleTooltip": null,
1161
+ "GetPortrait": null,
1162
+ "GetPortraitFrameFrame": null,
1163
+ "GetPowerfulVassalFrame": null,
1164
+ "GetPowerfulVassalTooltip": null,
1165
+ "GetPrestige": "CFixedPoint",
1166
+ "GetPrestigeLevel": "int32",
1167
+ "GetPrestigeLevelTexture": null,
1168
+ "GetPrestigeTooltipWithBalance": "CString",
1169
+ "GetPrisoners": null,
1170
+ "GetProwess": null,
1171
+ "GetProwessBreakdown": null,
1172
+ "GetRaidTargets": null,
1173
+ "GetRelationToString": "CString",
1174
+ "GetRevokeReasons": "CString",
1175
+ "GetSexuality": "CString",
1176
+ "GetSexualityFrame": "int32",
1177
+ "GetSheHe": null,
1178
+ "GetShortUIName": null,
1179
+ "GetShortUINameNoFormat": null,
1180
+ "GetShortUINameNoTooltip": null,
1181
+ "GetShortUINameNoTooltipNoFormat": null,
1182
+ "GetShortUINameNotMe": null,
1183
+ "GetShortUINameNotMeNoFormat": null,
1184
+ "GetShortUINameNotMeNoTooltip": null,
1185
+ "GetShortUINameNotMeNoTooltipNoFormat": null,
1186
+ "GetShortUINamePossessive": null,
1187
+ "GetShortUINamePossessiveNoFormat": null,
1188
+ "GetShortUINamePossessiveNoTooltip": null,
1189
+ "GetShortUINamePossessiveNoTooltipNoFormat": null,
1190
+ "GetShortUINamePossessiveNotMy": null,
1191
+ "GetShortUINamePossessiveNotMyNoFormat": null,
1192
+ "GetShortUINamePossessiveNotMyNoTooltip": null,
1193
+ "GetShortUINamePossessiveNotMyNoTooltipNoFormat": null,
1194
+ "GetSimpleGoldTooltip": null,
1195
+ "GetSkill": null,
1196
+ "GetSkillWithLevel": null,
1197
+ "GetSlowHistoryIdForDebug": null,
1198
+ "GetSpecialGuestRelationDescription": "CString",
1199
+ "GetStartCouncilTaskInTooltip": "CString",
1200
+ "GetStartRaidBlockers": "CString",
1201
+ "GetStress": "int32",
1202
+ "GetStressLevel": "int32",
1203
+ "GetStressProgress": "float",
1204
+ "GetSuccessionRelation": "CString",
1205
+ "GetTargetWeight": "int32",
1206
+ "GetTheocraticLessee": null,
1207
+ "GetTheocraticLesseeApprovalTooltip": "CString",
1208
+ "GetTitleAsName": null,
1209
+ "GetTitleAsNameNicknamed": null,
1210
+ "GetTitleAsNameNicknamedNoTooltip": null,
1211
+ "GetTitleAsNameNicknamedNoTooltipRegnal": null,
1212
+ "GetTitleAsNameNicknamedOrMe": null,
1213
+ "GetTitleAsNameNicknamedOrMeNoTooltip": null,
1214
+ "GetTitleAsNameNicknamedOrMeNoTooltipRegnal": null,
1215
+ "GetTitleAsNameNicknamedOrMeRegnal": null,
1216
+ "GetTitleAsNameNicknamedPossessive": null,
1217
+ "GetTitleAsNameNicknamedPossessiveNoTooltip": null,
1218
+ "GetTitleAsNameNicknamedPossessiveNoTooltipRegnal": null,
1219
+ "GetTitleAsNameNicknamedPossessiveOrMy": null,
1220
+ "GetTitleAsNameNicknamedPossessiveOrMyNoTooltip": null,
1221
+ "GetTitleAsNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
1222
+ "GetTitleAsNameNicknamedPossessiveOrMyRegnal": null,
1223
+ "GetTitleAsNameNicknamedPossessiveRegnal": null,
1224
+ "GetTitleAsNameNicknamedRegnal": null,
1225
+ "GetTitleAsNameNoTooltip": null,
1226
+ "GetTitleAsNameNoTooltipRegnal": null,
1227
+ "GetTitleAsNameOrMe": null,
1228
+ "GetTitleAsNameOrMeNoTooltip": null,
1229
+ "GetTitleAsNameOrMeNoTooltipRegnal": null,
1230
+ "GetTitleAsNameOrMeRegnal": null,
1231
+ "GetTitleAsNamePossessive": null,
1232
+ "GetTitleAsNamePossessiveNoTooltip": null,
1233
+ "GetTitleAsNamePossessiveNoTooltipRegnal": null,
1234
+ "GetTitleAsNamePossessiveOrMy": null,
1235
+ "GetTitleAsNamePossessiveOrMyNoTooltip": null,
1236
+ "GetTitleAsNamePossessiveOrMyNoTooltipRegnal": null,
1237
+ "GetTitleAsNamePossessiveOrMyRegnal": null,
1238
+ "GetTitleAsNamePossessiveRegnal": null,
1239
+ "GetTitleAsNameRegnal": null,
1240
+ "GetTitleTierName": "CString",
1241
+ "GetTitleTierNamePossessive": "CString",
1242
+ "GetTitledFirstName": null,
1243
+ "GetTitledFirstNameNicknamed": null,
1244
+ "GetTitledFirstNameNicknamedNoTooltip": null,
1245
+ "GetTitledFirstNameNicknamedNoTooltipRegnal": null,
1246
+ "GetTitledFirstNameNicknamedOrMe": null,
1247
+ "GetTitledFirstNameNicknamedOrMeNoTooltip": null,
1248
+ "GetTitledFirstNameNicknamedOrMeNoTooltipRegnal": null,
1249
+ "GetTitledFirstNameNicknamedOrMeRegnal": null,
1250
+ "GetTitledFirstNameNicknamedPossessive": null,
1251
+ "GetTitledFirstNameNicknamedPossessiveNoTooltip": null,
1252
+ "GetTitledFirstNameNicknamedPossessiveNoTooltipRegnal": null,
1253
+ "GetTitledFirstNameNicknamedPossessiveOrMy": null,
1254
+ "GetTitledFirstNameNicknamedPossessiveOrMyNoTooltip": null,
1255
+ "GetTitledFirstNameNicknamedPossessiveOrMyNoTooltipRegnal": null,
1256
+ "GetTitledFirstNameNicknamedPossessiveOrMyRegnal": null,
1257
+ "GetTitledFirstNameNicknamedPossessiveRegnal": null,
1258
+ "GetTitledFirstNameNicknamedRegnal": null,
1259
+ "GetTitledFirstNameNoTooltip": null,
1260
+ "GetTitledFirstNameNoTooltipRegnal": null,
1261
+ "GetTitledFirstNameOrMe": null,
1262
+ "GetTitledFirstNameOrMeNoTooltip": null,
1263
+ "GetTitledFirstNameOrMeNoTooltipRegnal": null,
1264
+ "GetTitledFirstNameOrMeRegnal": null,
1265
+ "GetTitledFirstNamePossessive": null,
1266
+ "GetTitledFirstNamePossessiveNoTooltip": null,
1267
+ "GetTitledFirstNamePossessiveNoTooltipRegnal": null,
1268
+ "GetTitledFirstNamePossessiveOrMy": null,
1269
+ "GetTitledFirstNamePossessiveOrMyNoTooltip": null,
1270
+ "GetTitledFirstNamePossessiveOrMyNoTooltipRegnal": null,
1271
+ "GetTitledFirstNamePossessiveOrMyRegnal": null,
1272
+ "GetTitledFirstNamePossessiveRegnal": null,
1273
+ "GetTitledFirstNameRegnal": null,
1274
+ "GetTotalPerkPoints": "int32",
1275
+ "GetTraitIndices": null,
1276
+ "GetUIName": null,
1277
+ "GetUINameNoFormat": null,
1278
+ "GetUINameNoTooltip": null,
1279
+ "GetUINameNoTooltipNoFormat": null,
1280
+ "GetUINameNotMe": null,
1281
+ "GetUINameNotMeNoFormat": null,
1282
+ "GetUINameNotMeNoTooltip": null,
1283
+ "GetUINameNotMeNoTooltipNoFormat": null,
1284
+ "GetUINamePossessive": null,
1285
+ "GetUINamePossessiveNoFormat": null,
1286
+ "GetUINamePossessiveNoTooltip": null,
1287
+ "GetUINamePossessiveNoTooltipNoFormat": null,
1288
+ "GetUINamePossessiveNotMy": null,
1289
+ "GetUINamePossessiveNotMyNoFormat": null,
1290
+ "GetUINamePossessiveNotMyNoTooltip": null,
1291
+ "GetUINamePossessiveNotMyNoTooltipNoFormat": null,
1292
+ "GetUnlandedTitle": null,
1293
+ "GetUnlandedTitleSkipPlayer": null,
1294
+ "GetUnraisedKnightBreakdown": null,
1295
+ "GetUnraisedKnightCount": null,
1296
+ "GetVariablesDescription": null,
1297
+ "GetVassalInfoText": "CString",
1298
+ "GetVassalLimit": "int32",
1299
+ "GetVassalLimitBreakdown": "CString",
1300
+ "GetVassalLimitOverrun": "int32",
1301
+ "GetVassalLimitTooltip": "CString",
1302
+ "GetWarsInfo": null,
1303
+ "GetWifeHusband": null,
1304
+ "GetWomanMan": null,
1305
+ "GetWomenMen": null,
1306
+ "HasAtMostOneSpouse": null,
1307
+ "HasClaimOnTitle": null,
1308
+ "HasCouncillorWithTaskIn": null,
1309
+ "HasDifficultyInfo": null,
1310
+ "HasDynasty": "bool",
1311
+ "HasKillsKnownTo": "bool",
1312
+ "HasLandedTitles": "bool",
1313
+ "HasLiege": null,
1314
+ "HasLocation": "bool",
1315
+ "HasMultipleSpouses": null,
1316
+ "HasNormalCouncilPosition": "bool",
1317
+ "HasPerk": "bool",
1318
+ "HasPressedClaimOnTitle": null,
1319
+ "HasRaisedRegiments": null,
1320
+ "HasRealmLaw": null,
1321
+ "HasRegnalName": "bool",
1322
+ "HasRelationTo": "bool",
1323
+ "HasSealCoA": "bool",
1324
+ "HasSexuality": "bool",
1325
+ "HasSpecialCouncilPosition": "bool",
1326
+ "HasUnpressedClaimOnTitle": null,
1327
+ "HasVassalInfo": "bool",
1328
+ "HookTooltip": null,
1329
+ "IsAdult": "bool",
1330
+ "IsAlive": "bool",
1331
+ "IsAtWar": "bool",
1332
+ "IsBastard": "bool",
1333
+ "IsBetrothed": "bool",
1334
+ "IsConcubine": "bool",
1335
+ "IsCouncilTaskValid": "bool",
1336
+ "IsCouncillor": "bool",
1337
+ "IsDead": null,
1338
+ "IsDeadAndValid": null,
1339
+ "IsDynast": "bool",
1340
+ "IsDynastyHead": "bool",
1341
+ "IsFemale": "bool",
1342
+ "IsFounderOfDynasty": "bool",
1343
+ "IsGuest": "bool",
1344
+ "IsHouseHead": "bool",
1345
+ "IsHovered": "bool",
1346
+ "IsImprisoned": "bool",
1347
+ "IsIncapable": "bool",
1348
+ "IsIndependentRuler": "bool",
1349
+ "IsKnight": "bool",
1350
+ "IsKnightDefault": null,
1351
+ "IsKnightDisallowed": null,
1352
+ "IsKnightForced": null,
1353
+ "IsKnightInArmy": "bool",
1354
+ "IsKnightInSpecificArmy": "bool",
1355
+ "IsLegitimateMemberOfHouse": "bool",
1356
+ "IsLegitimizedBastard": "bool",
1357
+ "IsLocalPlayer": null,
1358
+ "IsMyPowerfulVassal": null,
1359
+ "IsOpposing": "bool",
1360
+ "IsOtherLiegeOrAbove": "bool",
1361
+ "IsOtherPlayer": null,
1362
+ "IsPinned": null,
1363
+ "IsPlayer": null,
1364
+ "IsPlayerInteractionShown": null,
1365
+ "IsPlayerInteractionShownAndCanPickTitle": null,
1366
+ "IsPlayerInteractionValid": null,
1367
+ "IsPlayerInteractionWithTargetCharacterValid": "bool",
1368
+ "IsPlayerInteractionWithTargetSecretValid": "bool",
1369
+ "IsPlayerInteractionWithTargetTitleValid": null,
1370
+ "IsPowerfulVassal": "bool",
1371
+ "IsReligiousHead": null,
1372
+ "IsRuler": "bool",
1373
+ "IsSelected": "bool",
1374
+ "IsShownInCharacterWindow": null,
1375
+ "IsTheocraticLessee": "bool",
1376
+ "IsTheocraticLesseeOf": "bool",
1377
+ "IsValid": "bool",
1378
+ "IsVisiblyInfertile": "bool",
1379
+ "LocalPlayerString": "CString",
1380
+ "NumberOfDirectlyHeldCounties": "int32",
1381
+ "OnCustomizePortrait": null,
1382
+ "OnMouseEnter": null,
1383
+ "OnMouseLeave": null,
1384
+ "OpenPlayerInteraction": null,
1385
+ "OpenPlayerInteractionWithTargetCharacter": null,
1386
+ "OpenPlayerInteractionWithTargetSecret": null,
1387
+ "OpenPlayerInteractionWithTargetTitle": null,
1388
+ "PlayerCanManageFocus": "bool",
1389
+ "PlayerHasHooksOrHookableSecrets": null,
1390
+ "PlayerName": null,
1391
+ "PunishmentTooltip": "CString",
1392
+ "RealmSize": "int32",
1393
+ "Self": null,
1394
+ "ShouldShowDreadEffectIcon": null,
1395
+ "ShouldShowDreadEffectIconFor": "bool",
1396
+ "StartCouncilTaskIn": null,
1397
+ "StressLevelEffect": null,
1398
+ "StressProgressDesc": null,
1399
+ "TheocraticLesseeApprovesOfLiege": "bool",
1400
+ "TheocraticLesseeHasApprovalStatus": "bool",
1401
+ "ToggleCharacterPinned": null
1402
+ },
1403
+ "Combat": {
1404
+ "Function": null,
1405
+ "GetAttacker": "CombatSide",
1406
+ "GetDefender": "CombatSide",
1407
+ "GetLeftSide": "CombatSide",
1408
+ "GetLeftSideResult": "CombatSideResultData",
1409
+ "GetProvince": "Province",
1410
+ "GetRightSide": "CombatSide",
1411
+ "GetRightSideResult": "CombatSideResultData",
1412
+ "MakeScope": "Scope",
1413
+ "AccessSelf": null,
1414
+ "Custom": "CString",
1415
+ "GetAdvantageSlider": "float",
1416
+ "GetCombatWidth": "CFixedPoint",
1417
+ "GetCombatWidthBreakdown": "CString",
1418
+ "GetCurrentBalance": null,
1419
+ "GetName": "CString",
1420
+ "GetPhaseDesc": "CString",
1421
+ "GetPhaseTooltip": "CString",
1422
+ "GetPowerSlider": "float",
1423
+ "IsInPursuitPhase": "bool",
1424
+ "Self": null
1425
+ },
1426
+ "CombatSide": {
1427
+ "Function": null,
1428
+ "GetComposition": "ArmyComposition",
1429
+ "MakeScope": "Scope",
1430
+ "AccessSelf": null,
1431
+ "GetCurrentFightingMen": "CFixedPoint",
1432
+ "GetHardCasualties": "CFixedPoint",
1433
+ "GetPursuingRetreatingLabel": "CString",
1434
+ "GetPursuitPhaseMen": "CFixedPoint",
1435
+ "GetSoftCasualties": "CFixedPoint",
1436
+ "IsAttacker": "bool",
1437
+ "IsStillFighting": "bool",
1438
+ "Self": null
1439
+ },
1440
+ "County": {
1441
+ "Function": null,
1442
+ "GetCapital": "Province",
1443
+ "GetCount": "Character",
1444
+ "GetCountyOccupant": "Character",
1445
+ "GetCulture": "Culture",
1446
+ "GetFaith": "Faith",
1447
+ "GetTitle": "Title",
1448
+ "AccessSelf": null,
1449
+ "GetControl": "CFixedPoint",
1450
+ "GetControlLevel": "CString",
1451
+ "GetControlLevelOutOfMax": "CString",
1452
+ "GetCountyControlEffectsDesc": "CString",
1453
+ "GetCountyControlIncreaseDesc": "CString",
1454
+ "GetCountyDevelopmentEffectsDesc": "CString",
1455
+ "GetCountyDevelopmentIncreaseDesc": "CString",
1456
+ "GetDevelopmentIgnoredDesc": "CString",
1457
+ "GetDevelopmentLevel": "int32",
1458
+ "GetDevelopmentLevelString": "CString",
1459
+ "GetName": "CString",
1460
+ "IsFullyOccupied": "bool",
1461
+ "Self": null
1462
+ },
1463
+ "Culture": {
1464
+ "Function": null,
1465
+ "GetCultureEra": "CultureEra",
1466
+ "GetCultureHead": "Character",
1467
+ "GetFascination": "CultureInnovation",
1468
+ "GetFascinationType": "CultureInnovationType",
1469
+ "GetGroup": "CultureGroup",
1470
+ "GetTemplate": "CultureTemplate",
1471
+ "MakeScope": "Scope",
1472
+ "AccessSelf": null,
1473
+ "GetCollectiveNoun": "CString",
1474
+ "GetCollectiveNounNoTooltip": "CString",
1475
+ "GetID": "uint32",
1476
+ "GetName": "CString",
1477
+ "GetNameNoTooltip": "CString",
1478
+ "GetRelationToPlayer": null,
1479
+ "HasAvailableInnovation": "bool",
1480
+ "HasCultureHead": "bool",
1481
+ "HasFascination": "bool",
1482
+ "IsPlayerCulture": null,
1483
+ "IsPlayerCultureGroup": null,
1484
+ "IsPlayerCultureHead": null,
1485
+ "Self": null
1486
+ },
1487
+ "CultureGroup": {
1488
+ "Function": null,
1489
+ "MakeScope": "Scope",
1490
+ "AccessSelf": null,
1491
+ "GetCultures": null,
1492
+ "GetName": "CString",
1493
+ "Self": null
1494
+ },
1495
+ "Dynasty": {
1496
+ "Function": null,
1497
+ "GetDynast": "Character",
1498
+ "GetDynastyCoA": "CoatOfArms",
1499
+ "MakeScope": "Scope",
1500
+ "AccessSelf": null,
1501
+ "CanUnlockRelevantPerk": "bool",
1502
+ "GetAliveMembers": null,
1503
+ "GetBaseName": "CString",
1504
+ "GetBaseNameNoTooltip": "CString",
1505
+ "GetDeadMembers": null,
1506
+ "GetDynastyHouses": null,
1507
+ "GetDynastyPrestigeLevelTexture": null,
1508
+ "GetFoundedDynastyHousesCount": "int32",
1509
+ "GetID": "uint32",
1510
+ "GetMembers": null,
1511
+ "GetMembersText": "CString",
1512
+ "GetName": "CString",
1513
+ "GetNameNoTooltip": "CString",
1514
+ "GetNextPrestigeLevelName": null,
1515
+ "GetNumberOfLivingMembers": "int32",
1516
+ "GetNumberOfMembers": "int32",
1517
+ "GetPrestige": "CFixedPoint",
1518
+ "GetPrestigeBreakdown": null,
1519
+ "GetPrestigeFrame": null,
1520
+ "GetPrestigeIncome": "CFixedPoint",
1521
+ "GetPrestigeLevel": "int32",
1522
+ "GetPrestigeLevelEffect": null,
1523
+ "GetPrestigeLevelName": null,
1524
+ "GetPrestigeLevelProgress": null,
1525
+ "GetPrestigeLevelProgressTooltip": null,
1526
+ "GetPrestigeNextLevelText": null,
1527
+ "GetPrestigeProgress": "CString",
1528
+ "GetRequiredPowerToReplaceDynast": "CFixedPoint",
1529
+ "HasDynast": "bool",
1530
+ "HasPerk": "bool",
1531
+ "IsMyDynasty": "bool",
1532
+ "IsValid": "bool",
1533
+ "Self": null
1534
+ },
1535
+ "DynastyHouse": {
1536
+ "Function": null,
1537
+ "GetDynasty": "Dynasty",
1538
+ "GetFounder": "Character",
1539
+ "GetHeadOfHouse": "Character",
1540
+ "GetHeirOfHouse": "Character",
1541
+ "GetHouseCoA": "CoatOfArms",
1542
+ "MakeScope": "Scope",
1543
+ "AccessSelf": null,
1544
+ "GetAliveMembers": null,
1545
+ "GetBaseName": "CString",
1546
+ "GetBaseNameNoTooltip": "CString",
1547
+ "GetDeadMembers": null,
1548
+ "GetFoundYear": "int32",
1549
+ "GetID": "uint32",
1550
+ "GetMembers": null,
1551
+ "GetMembersText": "CString",
1552
+ "GetMotto": "CString",
1553
+ "GetName": "CString",
1554
+ "GetNameNoTooltip": "CString",
1555
+ "GetNumberOfMembers": "int32",
1556
+ "HasBeenFounded": "bool",
1557
+ "HasHeadOfHouse": "bool",
1558
+ "HasHeirOfHouse": "bool",
1559
+ "IsFoundingHouse": "bool",
1560
+ "IsPlayerMember": null,
1561
+ "IsValid": "bool",
1562
+ "Self": null
1563
+ },
1564
+ "Faction": {
1565
+ "Function": null,
1566
+ "GetLeader": "Character",
1567
+ "GetSpecialCharacter": "Character",
1568
+ "GetSpecialTitle": "Title",
1569
+ "GetTarget": "Character",
1570
+ "MakeScope": "Scope",
1571
+ "AccessSelf": null,
1572
+ "GetDescription": "CString",
1573
+ "GetDiscontent": "float",
1574
+ "GetIcon": null,
1575
+ "GetName": "CString",
1576
+ "GetNameNoTooltip": "CString",
1577
+ "GetPower": "float",
1578
+ "GetShortEffectDescription": "CString",
1579
+ "GetShowSpecialTitle": "bool",
1580
+ "GetSpecialCharacterTitle": "CString",
1581
+ "HasSpecialCharacter": "bool",
1582
+ "HasSpecialTitle": "bool",
1583
+ "IsAtWar": "bool",
1584
+ "IsDangerous": "bool",
1585
+ "Self": null
1586
+ },
1587
+ "Faith": {
1588
+ "Function": null,
1589
+ "GetFounder": "Character",
1590
+ "GetGreatHolyWar": "GreatHolyWar",
1591
+ "GetReligion": "Religion",
1592
+ "GetReligiousHead": "Character",
1593
+ "GetReligiousHeadTitle": "Title",
1594
+ "MakeScope": "Scope",
1595
+ "AccessSelf": null,
1596
+ "AltPriestTermPlural": null,
1597
+ "BishopFemale": null,
1598
+ "BishopFemalePlural": null,
1599
+ "BishopMale": null,
1600
+ "BishopMalePlural": null,
1601
+ "BishopNeuter": null,
1602
+ "BishopNeuterPlural": null,
1603
+ "CreatorHerHim": null,
1604
+ "CreatorHerHis": null,
1605
+ "CreatorName": null,
1606
+ "CreatorNameAlternate": null,
1607
+ "CreatorNameAlternatePossessive": null,
1608
+ "CreatorNamePossessive": null,
1609
+ "CreatorSheHe": null,
1610
+ "Custom": "CString",
1611
+ "DeathDeityHerHis": null,
1612
+ "DeathDeityName": null,
1613
+ "DeathDeityNamePossessive": null,
1614
+ "DeathDeitySheHe": null,
1615
+ "DevilHerHim": null,
1616
+ "DevilHerHis": null,
1617
+ "DevilHerselfHimself": null,
1618
+ "DevilName": null,
1619
+ "DevilNamePossessive": null,
1620
+ "DevilSheHe": null,
1621
+ "DevoteeFemale": null,
1622
+ "DevoteeFemalePlural": null,
1623
+ "DevoteeMale": null,
1624
+ "DevoteeMalePlural": null,
1625
+ "DevoteeNeuter": null,
1626
+ "DevoteeNeuterPlural": null,
1627
+ "DivineRealm": null,
1628
+ "EvilGodNames": null,
1629
+ "FateGodHerHim": null,
1630
+ "FateGodHerHis": null,
1631
+ "FateGodName": null,
1632
+ "FateGodNameAlternate": null,
1633
+ "FateGodNameAlternatePossessive": null,
1634
+ "FateGodNamePossessive": null,
1635
+ "FateGodSheHe": null,
1636
+ "FertilityGodHerHim": null,
1637
+ "FertilityGodHerHis": null,
1638
+ "FertilityGodName": null,
1639
+ "FertilityGodNameAlternate": null,
1640
+ "FertilityGodNameAlternatePossessive": null,
1641
+ "FertilityGodNamePossessive": null,
1642
+ "FertilityGodSheHe": null,
1643
+ "GHWName": null,
1644
+ "GHWNamePlural": null,
1645
+ "GetAdherentName": "CString",
1646
+ "GetAdherentNameNoTooltip": "CString",
1647
+ "GetAdherentNamePlural": "CString",
1648
+ "GetAdherentNamePluralNoTooltip": "CString",
1649
+ "GetAdjective": "CString",
1650
+ "GetAdjectiveNoTooltip": "CString",
1651
+ "GetDefensiveGreatHolyWars": null,
1652
+ "GetDesc": "CString",
1653
+ "GetDoctrineBackgroundIcon": null,
1654
+ "GetDoctrines": null,
1655
+ "GetFervor": "CFixedPoint",
1656
+ "GetFlavorDesc": "CString",
1657
+ "GetHostilityLevelTowards": "int32",
1658
+ "GetID": "uint32",
1659
+ "GetIcon": null,
1660
+ "GetLabelFaithReligion": "CString",
1661
+ "GetMonthlyFervorChange": "CFixedPoint",
1662
+ "GetMonthlyFervorChangeDesc": "CString",
1663
+ "GetName": "CString",
1664
+ "GetNameNoTooltip": "CString",
1665
+ "GetNumberOfCountiesOfFaith": "int32",
1666
+ "GetRelationNameTo": "CString",
1667
+ "GetTextIcon": "CString",
1668
+ "GoodGodNames": null,
1669
+ "HasDoctrine": "bool",
1670
+ "HasDoctrineByKey": "bool",
1671
+ "HasOffensiveGreatHolyWar": "bool",
1672
+ "HasReservedNames": "bool",
1673
+ "HealthGodHerHim": null,
1674
+ "HealthGodHerHis": null,
1675
+ "HealthGodName": null,
1676
+ "HealthGodNameAlternate": null,
1677
+ "HealthGodNameAlternatePossessive": null,
1678
+ "HealthGodNamePossessive": null,
1679
+ "HealthGodSheHe": null,
1680
+ "HighGodHerHis": null,
1681
+ "HighGodHerselfHimself": null,
1682
+ "HighGodName": null,
1683
+ "HighGodNameAlternate": null,
1684
+ "HighGodNameAlternatePossessive": null,
1685
+ "HighGodNamePossessive": null,
1686
+ "HighGodNameSheHe": null,
1687
+ "HouseOfWorship": null,
1688
+ "HouseOfWorshipPlural": null,
1689
+ "HouseholdGodHerHim": null,
1690
+ "HouseholdGodHerHis": null,
1691
+ "HouseholdGodName": null,
1692
+ "HouseholdGodNameAlternate": null,
1693
+ "HouseholdGodNameAlternatePossessive": null,
1694
+ "HouseholdGodNamePossessive": null,
1695
+ "HouseholdGodSheHe": null,
1696
+ "IsSelected": "bool",
1697
+ "IsTraitSin": "bool",
1698
+ "IsTraitVirtue": "bool",
1699
+ "IsUnreformed": "bool",
1700
+ "IsValid": "bool",
1701
+ "KnowledgeGodHerHim": null,
1702
+ "KnowledgeGodHerHis": null,
1703
+ "KnowledgeGodName": null,
1704
+ "KnowledgeGodNamePossessive": null,
1705
+ "KnowledgeGodSheHe": null,
1706
+ "NegativeAfterLife": null,
1707
+ "NightGodHerHim": null,
1708
+ "NightGodHerHis": null,
1709
+ "NightGodName": null,
1710
+ "NightGodNameAlternate": null,
1711
+ "NightGodNameAlternatePossessive": null,
1712
+ "NightGodNamePossessive": null,
1713
+ "NightGodSheHe": null,
1714
+ "PantheonTerm": null,
1715
+ "PantheonTermHasHave": null,
1716
+ "PositiveAfterLife": null,
1717
+ "PriestFemale": null,
1718
+ "PriestFemalePlural": null,
1719
+ "PriestMale": null,
1720
+ "PriestMalePlural": null,
1721
+ "PriestNeuter": null,
1722
+ "PriestNeuterPlural": null,
1723
+ "RandomCustom": "CString",
1724
+ "ReligiousHeadName": null,
1725
+ "ReligiousHeadTitleName": null,
1726
+ "ReligiousSymbol": null,
1727
+ "ReligiousText": null,
1728
+ "Self": null,
1729
+ "TricksterGodHerHim": null,
1730
+ "TricksterGodHerHis": null,
1731
+ "TricksterGodName": null,
1732
+ "TricksterGodNamePossessive": null,
1733
+ "TricksterGodSheHe": null,
1734
+ "WarGodHerHim": null,
1735
+ "WarGodHerHis": null,
1736
+ "WarGodName": null,
1737
+ "WarGodNameAlternate": null,
1738
+ "WarGodNameAlternatePossessive": null,
1739
+ "WarGodNamePossessive": null,
1740
+ "WarGodSheHe": null,
1741
+ "WaterGodHerHim": null,
1742
+ "WaterGodHerHis": null,
1743
+ "WaterGodName": null,
1744
+ "WaterGodNameAlternate": null,
1745
+ "WaterGodNameAlternatePossessive": null,
1746
+ "WaterGodNamePossessive": null,
1747
+ "WaterGodSheHe": null,
1748
+ "WealthGodHerHim": null,
1749
+ "WealthGodHerHis": null,
1750
+ "WealthGodName": null,
1751
+ "WealthGodNameAlternate": null,
1752
+ "WealthGodNameAlternatePossessive": null,
1753
+ "WealthGodNamePossessive": null,
1754
+ "WealthGodSheHe": null,
1755
+ "WitchGodHerHim": null,
1756
+ "WitchGodHerHis": null,
1757
+ "WitchGodMistressMaster": null,
1758
+ "WitchGodMotherFather": null,
1759
+ "WitchGodName": null,
1760
+ "WitchGodSheHe": null,
1761
+ "random_AltPriestTermPlural": null,
1762
+ "random_BishopFemale": null,
1763
+ "random_BishopFemalePlural": null,
1764
+ "random_BishopMale": null,
1765
+ "random_BishopMalePlural": null,
1766
+ "random_BishopNeuter": null,
1767
+ "random_BishopNeuterPlural": null,
1768
+ "random_CreatorHerHim": null,
1769
+ "random_CreatorHerHis": null,
1770
+ "random_CreatorName": null,
1771
+ "random_CreatorNameAlternate": null,
1772
+ "random_CreatorNameAlternatePossessive": null,
1773
+ "random_CreatorNamePossessive": null,
1774
+ "random_CreatorSheHe": null,
1775
+ "random_DeathDeityHerHis": null,
1776
+ "random_DeathDeityName": null,
1777
+ "random_DeathDeityNamePossessive": null,
1778
+ "random_DeathDeitySheHe": null,
1779
+ "random_DevilHerHim": null,
1780
+ "random_DevilHerHis": null,
1781
+ "random_DevilHerselfHimself": null,
1782
+ "random_DevilName": null,
1783
+ "random_DevilNamePossessive": null,
1784
+ "random_DevilSheHe": null,
1785
+ "random_DevoteeFemale": null,
1786
+ "random_DevoteeFemalePlural": null,
1787
+ "random_DevoteeMale": null,
1788
+ "random_DevoteeMalePlural": null,
1789
+ "random_DevoteeNeuter": null,
1790
+ "random_DevoteeNeuterPlural": null,
1791
+ "random_DivineRealm": null,
1792
+ "random_EvilGodNames": null,
1793
+ "random_FateGodHerHim": null,
1794
+ "random_FateGodHerHis": null,
1795
+ "random_FateGodName": null,
1796
+ "random_FateGodNameAlternate": null,
1797
+ "random_FateGodNameAlternatePossessive": null,
1798
+ "random_FateGodNamePossessive": null,
1799
+ "random_FateGodSheHe": null,
1800
+ "random_FertilityGodHerHim": null,
1801
+ "random_FertilityGodHerHis": null,
1802
+ "random_FertilityGodName": null,
1803
+ "random_FertilityGodNameAlternate": null,
1804
+ "random_FertilityGodNameAlternatePossessive": null,
1805
+ "random_FertilityGodNamePossessive": null,
1806
+ "random_FertilityGodSheHe": null,
1807
+ "random_GHWName": null,
1808
+ "random_GHWNamePlural": null,
1809
+ "random_GoodGodNames": null,
1810
+ "random_HealthGodHerHim": null,
1811
+ "random_HealthGodHerHis": null,
1812
+ "random_HealthGodName": null,
1813
+ "random_HealthGodNameAlternate": null,
1814
+ "random_HealthGodNameAlternatePossessive": null,
1815
+ "random_HealthGodNamePossessive": null,
1816
+ "random_HealthGodSheHe": null,
1817
+ "random_HighGodHerHis": null,
1818
+ "random_HighGodHerselfHimself": null,
1819
+ "random_HighGodName": null,
1820
+ "random_HighGodNameAlternate": null,
1821
+ "random_HighGodNameAlternatePossessive": null,
1822
+ "random_HighGodNamePossessive": null,
1823
+ "random_HighGodNameSheHe": null,
1824
+ "random_HouseOfWorship": null,
1825
+ "random_HouseOfWorshipPlural": null,
1826
+ "random_HouseholdGodHerHim": null,
1827
+ "random_HouseholdGodHerHis": null,
1828
+ "random_HouseholdGodName": null,
1829
+ "random_HouseholdGodNameAlternate": null,
1830
+ "random_HouseholdGodNameAlternatePossessive": null,
1831
+ "random_HouseholdGodNamePossessive": null,
1832
+ "random_HouseholdGodSheHe": null,
1833
+ "random_KnowledgeGodHerHim": null,
1834
+ "random_KnowledgeGodHerHis": null,
1835
+ "random_KnowledgeGodName": null,
1836
+ "random_KnowledgeGodNamePossessive": null,
1837
+ "random_KnowledgeGodSheHe": null,
1838
+ "random_NegativeAfterLife": null,
1839
+ "random_NightGodHerHim": null,
1840
+ "random_NightGodHerHis": null,
1841
+ "random_NightGodName": null,
1842
+ "random_NightGodNameAlternate": null,
1843
+ "random_NightGodNameAlternatePossessive": null,
1844
+ "random_NightGodNamePossessive": null,
1845
+ "random_NightGodSheHe": null,
1846
+ "random_PantheonTerm": null,
1847
+ "random_PantheonTermHasHave": null,
1848
+ "random_PositiveAfterLife": null,
1849
+ "random_PriestFemale": null,
1850
+ "random_PriestFemalePlural": null,
1851
+ "random_PriestMale": null,
1852
+ "random_PriestMalePlural": null,
1853
+ "random_PriestNeuter": null,
1854
+ "random_PriestNeuterPlural": null,
1855
+ "random_ReligiousHeadName": null,
1856
+ "random_ReligiousHeadTitleName": null,
1857
+ "random_ReligiousSymbol": null,
1858
+ "random_ReligiousText": null,
1859
+ "random_TricksterGodHerHim": null,
1860
+ "random_TricksterGodHerHis": null,
1861
+ "random_TricksterGodName": null,
1862
+ "random_TricksterGodNamePossessive": null,
1863
+ "random_TricksterGodSheHe": null,
1864
+ "random_WarGodHerHim": null,
1865
+ "random_WarGodHerHis": null,
1866
+ "random_WarGodName": null,
1867
+ "random_WarGodNameAlternate": null,
1868
+ "random_WarGodNameAlternatePossessive": null,
1869
+ "random_WarGodNamePossessive": null,
1870
+ "random_WarGodSheHe": null,
1871
+ "random_WaterGodHerHim": null,
1872
+ "random_WaterGodHerHis": null,
1873
+ "random_WaterGodName": null,
1874
+ "random_WaterGodNameAlternate": null,
1875
+ "random_WaterGodNameAlternatePossessive": null,
1876
+ "random_WaterGodNamePossessive": null,
1877
+ "random_WaterGodSheHe": null,
1878
+ "random_WealthGodHerHim": null,
1879
+ "random_WealthGodHerHis": null,
1880
+ "random_WealthGodName": null,
1881
+ "random_WealthGodNameAlternate": null,
1882
+ "random_WealthGodNameAlternatePossessive": null,
1883
+ "random_WealthGodNamePossessive": null,
1884
+ "random_WealthGodSheHe": null,
1885
+ "random_WitchGodHerHim": null,
1886
+ "random_WitchGodHerHis": null,
1887
+ "random_WitchGodMistressMaster": null,
1888
+ "random_WitchGodMotherFather": null,
1889
+ "random_WitchGodName": null,
1890
+ "random_WitchGodSheHe": null
1891
+ },
1892
+ "Holding": {
1893
+ "Function": null,
1894
+ "GetConstructingHoldingType": "HoldingType",
1895
+ "GetConstructionBuilding": "Building",
1896
+ "GetDuchyBuildingType": "Building",
1897
+ "GetHolder": "Character",
1898
+ "GetLesseeOrHolder": "Character",
1899
+ "GetPrimaryBuildingType": "Building",
1900
+ "GetProvince": "Province",
1901
+ "GetType": "HoldingType",
1902
+ "AccessSelf": null,
1903
+ "CanConstructAnyBuilding": "bool",
1904
+ "GetConstructionProgress": null,
1905
+ "GetConstructionTimeLeft": null,
1906
+ "GetGarrisonSize": "int32",
1907
+ "GetIllustration": null,
1908
+ "GetIncome": "CFixedPoint",
1909
+ "GetLeviesTooltip": null,
1910
+ "GetMaxLevySize": "int32",
1911
+ "GetName": "CString",
1912
+ "GetNameNoTooltip": "CString",
1913
+ "GetTaxTooltip": null,
1914
+ "GetTooltip": "CString",
1915
+ "GetUnraisedLevyRatio": "CFixedPoint",
1916
+ "GetUnraisedLevyRatioPercent": "float",
1917
+ "HasDuchyBuildingSlot": "bool",
1918
+ "IsConstructionInProgress": "bool",
1919
+ "IsEmpty": "bool",
1920
+ "IsHovered": "bool",
1921
+ "IsLowControl": null,
1922
+ "IsSelected": "bool",
1923
+ "IsShowHoldingPins": null,
1924
+ "IsValidForLesseeOrHolder": "bool",
1925
+ "LevyAndTaxIsAffectedByFixableSituation": "bool",
1926
+ "OnMouseEnter": null,
1927
+ "OnMouseLeave": null,
1928
+ "Self": null
1929
+ },
1930
+ "Province": {
1931
+ "Function": null,
1932
+ "GetCoATitle": "Title",
1933
+ "GetController": "Character",
1934
+ "GetCounty": "County",
1935
+ "GetCountyCapitalProvince": "Province",
1936
+ "GetCountyOccupant": "Character",
1937
+ "GetEndOfRecentlyLooted": "Date",
1938
+ "GetHolding": "Holding",
1939
+ "GetRaid": "Raid",
1940
+ "GetSiege": "Siege",
1941
+ "GetTerrain": "Terrain",
1942
+ "GetTitle": "Title",
1943
+ "MakeScope": "Scope",
1944
+ "AccessSelf": null,
1945
+ "Custom": "CString",
1946
+ "GetFortLevel": "int32",
1947
+ "GetFortLevelTooltip": "CString",
1948
+ "GetId": "int32",
1949
+ "GetLootTime": "int32",
1950
+ "GetName": "CString",
1951
+ "GetNameNoTooltip": "CString",
1952
+ "GetProvinceLoot": "CFixedPoint",
1953
+ "GetRaidLoot": "CFixedPoint",
1954
+ "GetRaidLootTooltip": "CString",
1955
+ "GetSiegeStrength": "int32",
1956
+ "GetSupplyLimitDescFor": "CString",
1957
+ "GetSupplyLimitFor": "int32",
1958
+ "GetTag": "CString",
1959
+ "HasActiveRaid": "bool",
1960
+ "HasActiveSiege": null,
1961
+ "HasCountyCapitalProvince": "bool",
1962
+ "HasFort": "bool",
1963
+ "HasSiege": "bool",
1964
+ "IsOccupied": "bool",
1965
+ "IsRealmCapital": null,
1966
+ "IsRecentlyLooted": "bool",
1967
+ "Self": null
1968
+ },
1969
+ "Religion": {
1970
+ "Function": null,
1971
+ "GetFamily": "ReligionFamily",
1972
+ "MakeScope": "Scope",
1973
+ "AccessSelf": null,
1974
+ "Custom": "CString",
1975
+ "GetAdjective": "CString",
1976
+ "GetAdjectiveNoTooltip": "CString",
1977
+ "GetFaiths": null,
1978
+ "GetFlavorDesc": "CString",
1979
+ "GetName": "CString",
1980
+ "GetNameNoTooltip": "CString",
1981
+ "HasPaganRoots": "bool",
1982
+ "Self": null
1983
+ },
1984
+ "ReligionFamily": {
1985
+ "Function": null,
1986
+ "AccessSelf": null,
1987
+ "GetName": "CString",
1988
+ "GetNameNoTooltip": "CString",
1989
+ "GetReligions": "CString",
1990
+ "GetReligiousFamilyHostilityDescription": "CString",
1991
+ "IsPagan": "bool",
1992
+ "Self": null
1993
+ },
1994
+ "Scope": {
1995
+ "Function": null,
1996
+ "Activity": "Activity",
1997
+ "Army": "Army",
1998
+ "CasusBelli": "ActiveCasusBelli",
1999
+ "Char": "Character",
2000
+ "Combat": "Combat",
2001
+ "CombatSide": "CombatSide",
2002
+ "CouncilTask": "ActiveCouncilTask",
2003
+ "Culture": "Culture",
2004
+ "CultureGroup": "CultureGroup",
2005
+ "Dynasty": "Dynasty",
2006
+ "Faction": "Faction",
2007
+ "Faith": "Faith",
2008
+ "GetActivity": "Activity",
2009
+ "GetCharacter": "Character",
2010
+ "GetLandedTitle": "Title",
2011
+ "GetProvince": "Province",
2012
+ "GetScheme": "Scheme",
2013
+ "GetVariable": "Scope",
2014
+ "GreatHolyWar": "GreatHolyWar",
2015
+ "HolyOrder": "HolyOrder",
2016
+ "House": "DynastyHouse",
2017
+ "MercenaryCompany": "MercenaryCompany",
2018
+ "Province": "Province",
2019
+ "Religion": "Religion",
2020
+ "Scheme": "Scheme",
2021
+ "Secret": "Secret",
2022
+ "Story": "Story",
2023
+ "Title": "Title",
2024
+ "Var": "Scope",
2025
+ "War": "War",
2026
+ "AccessSelf": null,
2027
+ "GetFlagName": "CString",
2028
+ "GetList": null,
2029
+ "GetValue": "CFixedPoint",
2030
+ "GetValueWithDefault": "CFixedPoint",
2031
+ "IsSet": "bool",
2032
+ "Self": null,
2033
+ "VarRemaining": "int32"
2034
+ },
2035
+ "ScriptedGui": {
2036
+ "Function": null,
2037
+ "AccessSelf": null,
2038
+ "BuildTooltip": "CString",
2039
+ "Execute": null,
2040
+ "ExecuteTooltip": "CString",
2041
+ "IsShown": "bool",
2042
+ "IsShownTooltip": "CString",
2043
+ "IsValid": "bool",
2044
+ "IsValidTooltip": "CString",
2045
+ "Self": null
2046
+ },
2047
+ "Title": {
2048
+ "Function": null,
2049
+ "GetCountyData": "County",
2050
+ "GetDeFactoLiege": "Title",
2051
+ "GetDeFactoTopLiege": "Title",
2052
+ "GetDeJureLiege": "Title",
2053
+ "GetFaction": "Faction",
2054
+ "GetHeir": "Character",
2055
+ "GetHolder": "Character",
2056
+ "GetHolderOrCountyHolder": "Character",
2057
+ "GetHolyOrder": "HolyOrder",
2058
+ "GetLessee": "Character",
2059
+ "GetLesseeOrHolder": "Character",
2060
+ "GetMercenaryCompany": "MercenaryCompany",
2061
+ "GetPlayerNominee": "Character",
2062
+ "GetPreferredCapital": "Title",
2063
+ "GetProvince": "Province",
2064
+ "GetTitleCoA": "CoatOfArms",
2065
+ "MakeScope": "Scope",
2066
+ "AccessSelf": null,
2067
+ "CanCharacterControlVote": null,
2068
+ "CanHaveClaim": "bool",
2069
+ "CanPlayerRenameTitle": "bool",
2070
+ "CanUseFindVassal": "bool",
2071
+ "CreateHolderForBarony": null,
2072
+ "Custom": "CString",
2073
+ "GetAdjective": "CString",
2074
+ "GetAdjectiveNoTooltip": "CString",
2075
+ "GetBaseName": null,
2076
+ "GetBaseNameNoTier": null,
2077
+ "GetBaseNameNoTierNoTooltip": null,
2078
+ "GetBaseNameNoTierPossessive": null,
2079
+ "GetBaseNameNoTierPossessiveNoTooltip": null,
2080
+ "GetBaseNameNoTooltip": null,
2081
+ "GetBaseNamePossessive": null,
2082
+ "GetBaseNamePossessiveNoTooltip": null,
2083
+ "GetCOADeJureTooltip": null,
2084
+ "GetCOADefaultTooltip": null,
2085
+ "GetCanCharacterControlVoteReason": null,
2086
+ "GetClaimStateFor": "CString",
2087
+ "GetClickInfo": null,
2088
+ "GetCoatOfArms": null,
2089
+ "GetDeJureDriftTooltip": "CString",
2090
+ "GetID": "uint32",
2091
+ "GetKey": "CString",
2092
+ "GetLaws": null,
2093
+ "GetLeaseInfo": "CString",
2094
+ "GetLeasedOutVassalList": "CString",
2095
+ "GetLineOfSuccession": null,
2096
+ "GetLineOfSuccessionDesc": "CString",
2097
+ "GetName": null,
2098
+ "GetNameNoTier": null,
2099
+ "GetNameNoTierNoTooltip": null,
2100
+ "GetNameNoTierPossessive": null,
2101
+ "GetNameNoTierPossessiveNoTooltip": null,
2102
+ "GetNameNoTooltip": null,
2103
+ "GetNamePossessive": null,
2104
+ "GetNamePossessiveNoTooltip": null,
2105
+ "GetNameWithUnderlying": null,
2106
+ "GetNameWithUnderlyingNoTooltip": null,
2107
+ "GetNameWithUnderlyingPossessive": null,
2108
+ "GetNameWithUnderlyingPossessiveNoTooltip": null,
2109
+ "GetPrefix": "CString",
2110
+ "GetPrefixNoTooltip": "CString",
2111
+ "GetRankConcept": "CString",
2112
+ "GetRealmLabel": null,
2113
+ "GetSpecialDescription": "CString",
2114
+ "GetTierAsName": null,
2115
+ "GetTierAsNameNoTooltip": null,
2116
+ "GetTierAsNamePossessive": null,
2117
+ "GetTierAsNamePossessiveNoTooltip": null,
2118
+ "GetTierFrame": "int32",
2119
+ "HasFaction": "bool",
2120
+ "HasHolder": "bool",
2121
+ "HasLaws": "bool",
2122
+ "HasLeasedOutVassal": "bool",
2123
+ "HasSuccessionOrder": null,
2124
+ "HoldingCanBeHeldBy": "bool",
2125
+ "IsBarony": "bool",
2126
+ "IsCountyCapital": "bool",
2127
+ "IsHeldBy": "bool",
2128
+ "IsHolyOrder": "bool",
2129
+ "IsHovered": "bool",
2130
+ "IsLanded": "bool",
2131
+ "IsLeasedOut": "bool",
2132
+ "IsMercenaryCompany": "bool",
2133
+ "IsPlayerElector": null,
2134
+ "IsPrimary": "bool",
2135
+ "IsSelected": "bool",
2136
+ "IsShownInTitleView": null,
2137
+ "IsUnderTheocraticLease": "bool",
2138
+ "IsValid": "bool",
2139
+ "OnMouseEnter": null,
2140
+ "OnMouseLeave": null,
2141
+ "OnPlayerNominatesSuccessor": null,
2142
+ "SelectTitle": null,
2143
+ "Self": null
2144
+ },
2145
+ "TopScope": {
2146
+ "Function": null,
2147
+ "AddScope": "TopScope",
2148
+ "GetDecisionFromEventTargetFlag": "Decision",
2149
+ "GetRootScope": "Scope",
2150
+ "SetRoot": "TopScope",
2151
+ "sActivity": "Activity",
2152
+ "sArmy": "Army",
2153
+ "sC": "Character",
2154
+ "sCB": "ActiveCasusBelli",
2155
+ "sCharacter": "Character",
2156
+ "sCombat": "Combat",
2157
+ "sCombatSide": "CombatSide",
2158
+ "sCulture": "Culture",
2159
+ "sCultureGroup": "CultureGroup",
2160
+ "sDynasty": "Dynasty",
2161
+ "sFaction": "Faction",
2162
+ "sFaith": "Faith",
2163
+ "sGreatHolyWar": "GreatHolyWar",
2164
+ "sHolyOrder": "HolyOrder",
2165
+ "sHouse": "DynastyHouse",
2166
+ "sMercenary": "MercenaryCompany",
2167
+ "sProvince": "Province",
2168
+ "sScheme": "Scheme",
2169
+ "sSecret": "Secret",
2170
+ "sTitle": "Title",
2171
+ "sWar": "War",
2172
+ "AccessSelf": null,
2173
+ "Custom": null,
2174
+ "End": "TopScope",
2175
+ "GetFlagName": "CString",
2176
+ "GetValue": "CFixedPoint",
2177
+ "ScriptValue": "CFixedPoint",
2178
+ "Self": null
2179
+ },
2180
+ "War": {
2181
+ "Function": null,
2182
+ "GetActiveCB": "ActiveCasusBelli",
2183
+ "GetActiveCasusBelli": "ActiveCasusBelli",
2184
+ "GetPrimaryPlayerEnemy": "Character",
2185
+ "GetStartDate": "Date",
2186
+ "MakeScope": "Scope",
2187
+ "AccessSelf": null,
2188
+ "Custom": "CString",
2189
+ "GetID": "uint32",
2190
+ "GetName": "CString",
2191
+ "IsValid": "bool",
2192
+ "Self": null
2193
+ }
2194
+ }
2195
+ }