@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,2817 @@
1
+ DATE
2
+ Description: Jomini Date
3
+ Definition type: Global promote
4
+ Return type: Date
5
+
6
+ -----------------------
7
+
8
+ DATE_MAX
9
+ Description: Jomini Date - Max
10
+ Definition type: Global promote
11
+ Return type: Date
12
+
13
+ -----------------------
14
+
15
+ DATE_MIN
16
+ Description: Jomini Date - Min
17
+ Definition type: Global promote
18
+ Return type: Date
19
+
20
+ -----------------------
21
+
22
+ EmptyScope
23
+ Definition type: Global promote
24
+ Return type: TopScope
25
+
26
+ -----------------------
27
+
28
+ GetGlobalVariable( Arg0 )
29
+ Definition type: Global promote
30
+ Return type: Scope
31
+
32
+ -----------------------
33
+
34
+ GetVariableFromGlobalVariableMap( Arg0, Arg1 )
35
+ Definition type: Global promote
36
+ Return type: Scope
37
+
38
+ -----------------------
39
+
40
+ PREV
41
+ Description: Script Scope
42
+ Definition type: Global promote
43
+ Return type: Scope
44
+
45
+ -----------------------
46
+
47
+ ROOT
48
+ Description: Script Scope
49
+ Definition type: Global promote
50
+ Return type: Scope
51
+
52
+ -----------------------
53
+
54
+ SCOPE
55
+ Description: Script Scope
56
+ Definition type: Global promote
57
+ Return type: TopScope
58
+
59
+ -----------------------
60
+
61
+ THIS
62
+ Description: Script Scope
63
+ Definition type: Global promote
64
+ Return type: Scope
65
+
66
+ -----------------------
67
+
68
+ GetGlobalList( Arg0 )
69
+ Definition type: Global function
70
+ Return type: [unregistered]
71
+
72
+ -----------------------
73
+
74
+ GetGlobalVariable( Arg0 )
75
+ Definition type: Global function
76
+ Return type: [unregistered]
77
+
78
+ -----------------------
79
+
80
+ GetVarTimeRemaining( Arg0, Arg1 )
81
+ Definition type: Global function
82
+ Return type: int32
83
+
84
+ -----------------------
85
+
86
+ GetVariableFromGlobalVariableMap( Arg0, Arg1 )
87
+ Definition type: Global function
88
+ Return type: [unregistered]
89
+
90
+ -----------------------
91
+
92
+ MakeScopeBool( Arg0 )
93
+ Definition type: Global function
94
+ Return type: Scope
95
+
96
+ -----------------------
97
+
98
+ MakeScopeFlag( Arg0 )
99
+ Definition type: Global function
100
+ Return type: Scope
101
+
102
+ -----------------------
103
+
104
+ MakeScopeValue( Arg0 )
105
+ Definition type: Global function
106
+ Return type: Scope
107
+
108
+ -----------------------
109
+
110
+ Container
111
+ Definition type: Type
112
+
113
+ -----------------------
114
+
115
+ Container.AccessSelf
116
+ Definition type: Function
117
+ Return type: [unregistered]
118
+
119
+ -----------------------
120
+
121
+ Container.Self
122
+ Definition type: Function
123
+ Return type: [unregistered]
124
+
125
+ -----------------------
126
+
127
+ Scope
128
+ Definition type: Type
129
+
130
+ -----------------------
131
+
132
+ Scope.AccessAmendment
133
+ Definition type: Promote
134
+ Return type: Amendment
135
+
136
+ -----------------------
137
+
138
+ Scope.AccessAmendmentType
139
+ Definition type: Promote
140
+ Return type: AmendmentType
141
+
142
+ -----------------------
143
+
144
+ Scope.AccessBattle
145
+ Definition type: Promote
146
+ Return type: Battle
147
+
148
+ -----------------------
149
+
150
+ Scope.AccessBuilding
151
+ Definition type: Promote
152
+ Return type: Building
153
+
154
+ -----------------------
155
+
156
+ Scope.AccessBuildingGroup
157
+ Definition type: Promote
158
+ Return type: BuildingGroup
159
+
160
+ -----------------------
161
+
162
+ Scope.AccessBuildingType
163
+ Definition type: Promote
164
+ Return type: BuildingType
165
+
166
+ -----------------------
167
+
168
+ Scope.AccessCharacter
169
+ Definition type: Promote
170
+ Return type: Character
171
+
172
+ -----------------------
173
+
174
+ Scope.AccessCharacterRole
175
+ Definition type: Promote
176
+ Return type: CharacterRole
177
+
178
+ -----------------------
179
+
180
+ Scope.AccessCivilWar
181
+ Definition type: Promote
182
+ Return type: CivilWar
183
+
184
+ -----------------------
185
+
186
+ Scope.AccessCombatUnit
187
+ Definition type: Promote
188
+ Return type: CombatUnit
189
+
190
+ -----------------------
191
+
192
+ Scope.AccessCombatUnitType
193
+ Definition type: Promote
194
+ Return type: CombatUnitType
195
+
196
+ -----------------------
197
+
198
+ Scope.AccessCommanderOrderType
199
+ Definition type: Promote
200
+ Return type: CommanderOrderType
201
+
202
+ -----------------------
203
+
204
+ Scope.AccessCompany
205
+ Definition type: Promote
206
+ Return type: Company
207
+
208
+ -----------------------
209
+
210
+ Scope.AccessCompanyType
211
+ Definition type: Promote
212
+ Return type: CompanyType
213
+
214
+ -----------------------
215
+
216
+ Scope.AccessCountry
217
+ Definition type: Promote
218
+ Return type: Country
219
+
220
+ -----------------------
221
+
222
+ Scope.AccessCountryCreation
223
+ Definition type: Promote
224
+ Return type: CountryCreation
225
+
226
+ -----------------------
227
+
228
+ Scope.AccessCountryDefinition
229
+ Definition type: Promote
230
+ Return type: CountryDefinition
231
+
232
+ -----------------------
233
+
234
+ Scope.AccessCountryFormation
235
+ Definition type: Promote
236
+ Return type: CountryFormation
237
+
238
+ -----------------------
239
+
240
+ Scope.AccessCulturalCommunity
241
+ Definition type: Promote
242
+ Return type: CulturalCommunity
243
+
244
+ -----------------------
245
+
246
+ Scope.AccessCulture
247
+ Definition type: Promote
248
+ Return type: Culture
249
+
250
+ -----------------------
251
+
252
+ Scope.AccessDecisionType
253
+ Definition type: Promote
254
+ Return type: Decision
255
+
256
+ -----------------------
257
+
258
+ Scope.AccessDecree
259
+ Definition type: Promote
260
+ Return type: Decree
261
+
262
+ -----------------------
263
+
264
+ Scope.AccessDiplomaticAction
265
+ Definition type: Promote
266
+ Return type: DiplomaticAction
267
+
268
+ -----------------------
269
+
270
+ Scope.AccessDiplomaticCatalyst
271
+ Definition type: Promote
272
+ Return type: DiplomaticCatalyst
273
+
274
+ -----------------------
275
+
276
+ Scope.AccessDiplomaticCatalystCategory
277
+ Definition type: Promote
278
+ Return type: DiplomaticCatalystCategory
279
+
280
+ -----------------------
281
+
282
+ Scope.AccessDiplomaticCatalystType
283
+ Definition type: Promote
284
+ Return type: DiplomaticCatalystType
285
+
286
+ -----------------------
287
+
288
+ Scope.AccessDiplomaticDemand
289
+ Definition type: Promote
290
+ Return type: DiplomaticDemand
291
+
292
+ -----------------------
293
+
294
+ Scope.AccessDiplomaticPact
295
+ Definition type: Promote
296
+ Return type: DiplomaticPact
297
+
298
+ -----------------------
299
+
300
+ Scope.AccessDiplomaticPlay
301
+ Definition type: Promote
302
+ Return type: DiplomaticPlay
303
+
304
+ -----------------------
305
+
306
+ Scope.AccessDiplomaticPlayType
307
+ Definition type: Promote
308
+ Return type: DiplomaticPlayType
309
+
310
+ -----------------------
311
+
312
+ Scope.AccessDiplomaticRelations
313
+ Definition type: Promote
314
+ Return type: DiplomaticRelations
315
+
316
+ -----------------------
317
+
318
+ Scope.AccessFront
319
+ Definition type: Promote
320
+ Return type: Front
321
+
322
+ -----------------------
323
+
324
+ Scope.AccessGeographicRegion
325
+ Definition type: Promote
326
+ Return type: GeographicRegion
327
+
328
+ -----------------------
329
+
330
+ Scope.AccessGoods
331
+ Definition type: Promote
332
+ Return type: Goods
333
+
334
+ -----------------------
335
+
336
+ Scope.AccessHQ
337
+ Definition type: Promote
338
+ Return type: Hq
339
+
340
+ -----------------------
341
+
342
+ Scope.AccessHarvestCondition
343
+ Definition type: Promote
344
+ Return type: HarvestCondition
345
+
346
+ -----------------------
347
+
348
+ Scope.AccessHarvestConditionArea
349
+ Definition type: Promote
350
+ Return type: HarvestConditionArea
351
+
352
+ -----------------------
353
+
354
+ Scope.AccessHarvestConditionType
355
+ Definition type: Promote
356
+ Return type: HarvestConditionType
357
+
358
+ -----------------------
359
+
360
+ Scope.AccessIdeology
361
+ Definition type: Promote
362
+ Return type: Ideology
363
+
364
+ -----------------------
365
+
366
+ Scope.AccessInstitution
367
+ Definition type: Promote
368
+ Return type: Institution
369
+
370
+ -----------------------
371
+
372
+ Scope.AccessInstitutionType
373
+ Definition type: Promote
374
+ Return type: InstitutionType
375
+
376
+ -----------------------
377
+
378
+ Scope.AccessInterest
379
+ Definition type: Promote
380
+ Return type: Interest
381
+
382
+ -----------------------
383
+
384
+ Scope.AccessInterestGroup
385
+ Definition type: Promote
386
+ Return type: InterestGroup
387
+
388
+ -----------------------
389
+
390
+ Scope.AccessInterestGroupTrait
391
+ Definition type: Promote
392
+ Return type: InterestGroupTrait
393
+
394
+ -----------------------
395
+
396
+ Scope.AccessInterestTierType
397
+ Definition type: Promote
398
+ Return type: InterestTierType
399
+
400
+ -----------------------
401
+
402
+ Scope.AccessInvasion
403
+ Definition type: Promote
404
+ Return type: Invasion
405
+
406
+ -----------------------
407
+
408
+ Scope.AccessJournalEntry
409
+ Definition type: Promote
410
+ Return type: JournalEntry
411
+
412
+ -----------------------
413
+
414
+ Scope.AccessLaw
415
+ Definition type: Promote
416
+ Return type: Law
417
+
418
+ -----------------------
419
+
420
+ Scope.AccessLawType
421
+ Definition type: Promote
422
+ Return type: LawType
423
+
424
+ -----------------------
425
+
426
+ Scope.AccessMarket
427
+ Definition type: Promote
428
+ Return type: Market
429
+
430
+ -----------------------
431
+
432
+ Scope.AccessMarketGoods
433
+ Definition type: Promote
434
+ Return type: MarketGoods
435
+
436
+ -----------------------
437
+
438
+ Scope.AccessMilitaryFormation
439
+ Definition type: Promote
440
+ Return type: MilitaryFormation
441
+
442
+ -----------------------
443
+
444
+ Scope.AccessMobilizationOption
445
+ Definition type: Promote
446
+ Return type: MobilizationOption
447
+
448
+ -----------------------
449
+
450
+ Scope.AccessNavalBattle
451
+ Definition type: Promote
452
+ Return type: NavalBattle
453
+
454
+ -----------------------
455
+
456
+ Scope.AccessNavalMission
457
+ Definition type: Promote
458
+ Return type: NavalMission
459
+
460
+ -----------------------
461
+
462
+ Scope.AccessNavalMissionType
463
+ Definition type: Promote
464
+ Return type: NavalMissionType
465
+
466
+ -----------------------
467
+
468
+ Scope.AccessObjective
469
+ Definition type: Promote
470
+ Return type: Objective
471
+
472
+ -----------------------
473
+
474
+ Scope.AccessParty
475
+ Definition type: Promote
476
+ Return type: Party
477
+
478
+ -----------------------
479
+
480
+ Scope.AccessPoliticalLobby
481
+ Definition type: Promote
482
+ Return type: PoliticalLobby
483
+
484
+ -----------------------
485
+
486
+ Scope.AccessPoliticalLobbyAppeasementFactor
487
+ Definition type: Promote
488
+ Return type: PoliticalLobbyAppeasementFactor
489
+
490
+ -----------------------
491
+
492
+ Scope.AccessPoliticalLobbyType
493
+ Definition type: Promote
494
+ Return type: PoliticalLobbyType
495
+
496
+ -----------------------
497
+
498
+ Scope.AccessPoliticalMovement
499
+ Definition type: Promote
500
+ Return type: PoliticalMovement
501
+
502
+ -----------------------
503
+
504
+ Scope.AccessPoliticalMovementCategory
505
+ Definition type: Promote
506
+ Return type: PoliticalMovementCategory
507
+
508
+ -----------------------
509
+
510
+ Scope.AccessPoliticalMovementType
511
+ Definition type: Promote
512
+ Return type: PoliticalMovementType
513
+
514
+ -----------------------
515
+
516
+ Scope.AccessPop
517
+ Definition type: Promote
518
+ Return type: Pop
519
+
520
+ -----------------------
521
+
522
+ Scope.AccessPopType
523
+ Definition type: Promote
524
+ Return type: PopType
525
+
526
+ -----------------------
527
+
528
+ Scope.AccessPowerBloc
529
+ Definition type: Promote
530
+ Return type: PowerBloc
531
+
532
+ -----------------------
533
+
534
+ Scope.AccessPowerBlocIdentity
535
+ Definition type: Promote
536
+ Return type: PowerBlocIdentity
537
+
538
+ -----------------------
539
+
540
+ Scope.AccessPowerBlocPrinciple
541
+ Definition type: Promote
542
+ Return type: PowerBlocPrinciple
543
+
544
+ -----------------------
545
+
546
+ Scope.AccessPowerBlocPrincipleGroup
547
+ Definition type: Promote
548
+ Return type: PowerBlocPrincipleGroup
549
+
550
+ -----------------------
551
+
552
+ Scope.AccessProvince
553
+ Definition type: Promote
554
+ Return type: Province
555
+
556
+ -----------------------
557
+
558
+ Scope.AccessReligion
559
+ Definition type: Promote
560
+ Return type: Religion
561
+
562
+ -----------------------
563
+
564
+ Scope.AccessShip
565
+ Definition type: Promote
566
+ Return type: Ship
567
+
568
+ -----------------------
569
+
570
+ Scope.AccessShipGroup
571
+ Definition type: Promote
572
+ Return type: ShipGroup
573
+
574
+ -----------------------
575
+
576
+ Scope.AccessShipModificationType
577
+ Definition type: Promote
578
+ Return type: ShipModificationType
579
+
580
+ -----------------------
581
+
582
+ Scope.AccessShipType
583
+ Definition type: Promote
584
+ Return type: ShipType
585
+
586
+ -----------------------
587
+
588
+ Scope.AccessShippingLane
589
+ Definition type: Promote
590
+ Return type: ShippingLane
591
+
592
+ -----------------------
593
+
594
+ Scope.AccessState
595
+ Definition type: Promote
596
+ Return type: State
597
+
598
+ -----------------------
599
+
600
+ Scope.AccessStateGoods
601
+ Definition type: Promote
602
+ Return type: StateGoods
603
+
604
+ -----------------------
605
+
606
+ Scope.AccessStateRegion
607
+ Definition type: Promote
608
+ Return type: StateRegion
609
+
610
+ -----------------------
611
+
612
+ Scope.AccessStateTrait
613
+ Definition type: Promote
614
+ Return type: StateTrait
615
+
616
+ -----------------------
617
+
618
+ Scope.AccessStrait
619
+ Definition type: Promote
620
+ Return type: Strait
621
+
622
+ -----------------------
623
+
624
+ Scope.AccessStraitDefinition
625
+ Definition type: Promote
626
+ Return type: StraitDefinition
627
+
628
+ -----------------------
629
+
630
+ Scope.AccessStrategicRegion
631
+ Definition type: Promote
632
+ Return type: StrategicRegion
633
+
634
+ -----------------------
635
+
636
+ Scope.AccessSway
637
+ Definition type: Promote
638
+ Return type: Sway
639
+
640
+ -----------------------
641
+
642
+ Scope.AccessTechnology
643
+ Definition type: Promote
644
+ Return type: Technology
645
+
646
+ -----------------------
647
+
648
+ Scope.AccessTheater
649
+ Definition type: Promote
650
+ Return type: Theater
651
+
652
+ -----------------------
653
+
654
+ Scope.AccessTreaty
655
+ Definition type: Promote
656
+ Return type: Treaty
657
+
658
+ -----------------------
659
+
660
+ Scope.AccessTreatyArticle
661
+ Definition type: Promote
662
+ Return type: Article
663
+
664
+ -----------------------
665
+
666
+ Scope.AccessWar
667
+ Definition type: Promote
668
+ Return type: War
669
+
670
+ -----------------------
671
+
672
+ Scope.AccessWarGoal
673
+ Definition type: Promote
674
+ Return type: WarGoal
675
+
676
+ -----------------------
677
+
678
+ Scope.AccessWarGoalType
679
+ Definition type: Promote
680
+ Return type: WarGoalType
681
+
682
+ -----------------------
683
+
684
+ Scope.GetAmendment
685
+ Definition type: Promote
686
+ Return type: Amendment
687
+
688
+ -----------------------
689
+
690
+ Scope.GetAmendmentType
691
+ Definition type: Promote
692
+ Return type: AmendmentType
693
+
694
+ -----------------------
695
+
696
+ Scope.GetBattle
697
+ Definition type: Promote
698
+ Return type: Battle
699
+
700
+ -----------------------
701
+
702
+ Scope.GetBuilding
703
+ Definition type: Promote
704
+ Return type: Building
705
+
706
+ -----------------------
707
+
708
+ Scope.GetBuildingGroup
709
+ Definition type: Promote
710
+ Return type: BuildingGroup
711
+
712
+ -----------------------
713
+
714
+ Scope.GetBuildingType
715
+ Definition type: Promote
716
+ Return type: BuildingType
717
+
718
+ -----------------------
719
+
720
+ Scope.GetCharacter
721
+ Definition type: Promote
722
+ Return type: Character
723
+
724
+ -----------------------
725
+
726
+ Scope.GetCharacterRole
727
+ Definition type: Promote
728
+ Return type: CharacterRole
729
+
730
+ -----------------------
731
+
732
+ Scope.GetCivilWar
733
+ Definition type: Promote
734
+ Return type: CivilWar
735
+
736
+ -----------------------
737
+
738
+ Scope.GetCombatUnit
739
+ Definition type: Promote
740
+ Return type: CombatUnit
741
+
742
+ -----------------------
743
+
744
+ Scope.GetCombatUnitType
745
+ Definition type: Promote
746
+ Return type: CombatUnitType
747
+
748
+ -----------------------
749
+
750
+ Scope.GetCommanderOrderType
751
+ Definition type: Promote
752
+ Return type: CommanderOrderType
753
+
754
+ -----------------------
755
+
756
+ Scope.GetCompany
757
+ Definition type: Promote
758
+ Return type: Company
759
+
760
+ -----------------------
761
+
762
+ Scope.GetCompanyType
763
+ Definition type: Promote
764
+ Return type: CompanyType
765
+
766
+ -----------------------
767
+
768
+ Scope.GetCountry
769
+ Definition type: Promote
770
+ Return type: Country
771
+
772
+ -----------------------
773
+
774
+ Scope.GetCountryCreation
775
+ Definition type: Promote
776
+ Return type: CountryCreation
777
+
778
+ -----------------------
779
+
780
+ Scope.GetCountryDefinition
781
+ Definition type: Promote
782
+ Return type: CountryDefinition
783
+
784
+ -----------------------
785
+
786
+ Scope.GetCountryFormation
787
+ Definition type: Promote
788
+ Return type: CountryFormation
789
+
790
+ -----------------------
791
+
792
+ Scope.GetCulturalCommunity
793
+ Definition type: Promote
794
+ Return type: CulturalCommunity
795
+
796
+ -----------------------
797
+
798
+ Scope.GetCulture
799
+ Definition type: Promote
800
+ Return type: Culture
801
+
802
+ -----------------------
803
+
804
+ Scope.GetDecisionType
805
+ Definition type: Promote
806
+ Return type: Decision
807
+
808
+ -----------------------
809
+
810
+ Scope.GetDecree
811
+ Definition type: Promote
812
+ Return type: Decree
813
+
814
+ -----------------------
815
+
816
+ Scope.GetDiplomaticAction
817
+ Definition type: Promote
818
+ Return type: DiplomaticAction
819
+
820
+ -----------------------
821
+
822
+ Scope.GetDiplomaticCatalyst
823
+ Definition type: Promote
824
+ Return type: DiplomaticCatalyst
825
+
826
+ -----------------------
827
+
828
+ Scope.GetDiplomaticCatalystCategory
829
+ Definition type: Promote
830
+ Return type: DiplomaticCatalystCategory
831
+
832
+ -----------------------
833
+
834
+ Scope.GetDiplomaticCatalystType
835
+ Definition type: Promote
836
+ Return type: DiplomaticCatalystType
837
+
838
+ -----------------------
839
+
840
+ Scope.GetDiplomaticDemand
841
+ Definition type: Promote
842
+ Return type: DiplomaticDemand
843
+
844
+ -----------------------
845
+
846
+ Scope.GetDiplomaticPact
847
+ Definition type: Promote
848
+ Return type: DiplomaticPact
849
+
850
+ -----------------------
851
+
852
+ Scope.GetDiplomaticPlay
853
+ Definition type: Promote
854
+ Return type: DiplomaticPlay
855
+
856
+ -----------------------
857
+
858
+ Scope.GetDiplomaticPlayType
859
+ Definition type: Promote
860
+ Return type: DiplomaticPlayType
861
+
862
+ -----------------------
863
+
864
+ Scope.GetDiplomaticRelations
865
+ Definition type: Promote
866
+ Return type: DiplomaticRelations
867
+
868
+ -----------------------
869
+
870
+ Scope.GetFront
871
+ Definition type: Promote
872
+ Return type: Front
873
+
874
+ -----------------------
875
+
876
+ Scope.GetGeographicRegion
877
+ Definition type: Promote
878
+ Return type: GeographicRegion
879
+
880
+ -----------------------
881
+
882
+ Scope.GetGoods
883
+ Definition type: Promote
884
+ Return type: Goods
885
+
886
+ -----------------------
887
+
888
+ Scope.GetHQ
889
+ Definition type: Promote
890
+ Return type: Hq
891
+
892
+ -----------------------
893
+
894
+ Scope.GetHarvestCondition
895
+ Definition type: Promote
896
+ Return type: HarvestCondition
897
+
898
+ -----------------------
899
+
900
+ Scope.GetHarvestConditionArea
901
+ Definition type: Promote
902
+ Return type: HarvestConditionArea
903
+
904
+ -----------------------
905
+
906
+ Scope.GetHarvestConditionType
907
+ Definition type: Promote
908
+ Return type: HarvestConditionType
909
+
910
+ -----------------------
911
+
912
+ Scope.GetIdeology
913
+ Definition type: Promote
914
+ Return type: Ideology
915
+
916
+ -----------------------
917
+
918
+ Scope.GetInstitution
919
+ Definition type: Promote
920
+ Return type: Institution
921
+
922
+ -----------------------
923
+
924
+ Scope.GetInstitutionType
925
+ Definition type: Promote
926
+ Return type: InstitutionType
927
+
928
+ -----------------------
929
+
930
+ Scope.GetInterest
931
+ Definition type: Promote
932
+ Return type: Interest
933
+
934
+ -----------------------
935
+
936
+ Scope.GetInterestGroup
937
+ Definition type: Promote
938
+ Return type: InterestGroup
939
+
940
+ -----------------------
941
+
942
+ Scope.GetInterestGroupTrait
943
+ Definition type: Promote
944
+ Return type: InterestGroupTrait
945
+
946
+ -----------------------
947
+
948
+ Scope.GetInterestTierType
949
+ Definition type: Promote
950
+ Return type: InterestTierType
951
+
952
+ -----------------------
953
+
954
+ Scope.GetInvasion
955
+ Definition type: Promote
956
+ Return type: Invasion
957
+
958
+ -----------------------
959
+
960
+ Scope.GetJournalEntry
961
+ Definition type: Promote
962
+ Return type: JournalEntry
963
+
964
+ -----------------------
965
+
966
+ Scope.GetLaw
967
+ Definition type: Promote
968
+ Return type: Law
969
+
970
+ -----------------------
971
+
972
+ Scope.GetLawType
973
+ Definition type: Promote
974
+ Return type: LawType
975
+
976
+ -----------------------
977
+
978
+ Scope.GetMarket
979
+ Definition type: Promote
980
+ Return type: Market
981
+
982
+ -----------------------
983
+
984
+ Scope.GetMarketGoods
985
+ Definition type: Promote
986
+ Return type: MarketGoods
987
+
988
+ -----------------------
989
+
990
+ Scope.GetMilitaryFormation
991
+ Definition type: Promote
992
+ Return type: MilitaryFormation
993
+
994
+ -----------------------
995
+
996
+ Scope.GetMobilizationOption
997
+ Definition type: Promote
998
+ Return type: MobilizationOption
999
+
1000
+ -----------------------
1001
+
1002
+ Scope.GetNavalBattle
1003
+ Definition type: Promote
1004
+ Return type: NavalBattle
1005
+
1006
+ -----------------------
1007
+
1008
+ Scope.GetNavalMission
1009
+ Definition type: Promote
1010
+ Return type: NavalMission
1011
+
1012
+ -----------------------
1013
+
1014
+ Scope.GetNavalMissionType
1015
+ Definition type: Promote
1016
+ Return type: NavalMissionType
1017
+
1018
+ -----------------------
1019
+
1020
+ Scope.GetObjective
1021
+ Definition type: Promote
1022
+ Return type: Objective
1023
+
1024
+ -----------------------
1025
+
1026
+ Scope.GetParty
1027
+ Definition type: Promote
1028
+ Return type: Party
1029
+
1030
+ -----------------------
1031
+
1032
+ Scope.GetPoliticalLobby
1033
+ Definition type: Promote
1034
+ Return type: PoliticalLobby
1035
+
1036
+ -----------------------
1037
+
1038
+ Scope.GetPoliticalLobbyAppeasementFactor
1039
+ Definition type: Promote
1040
+ Return type: PoliticalLobbyAppeasementFactor
1041
+
1042
+ -----------------------
1043
+
1044
+ Scope.GetPoliticalLobbyType
1045
+ Definition type: Promote
1046
+ Return type: PoliticalLobbyType
1047
+
1048
+ -----------------------
1049
+
1050
+ Scope.GetPoliticalMovement
1051
+ Definition type: Promote
1052
+ Return type: PoliticalMovement
1053
+
1054
+ -----------------------
1055
+
1056
+ Scope.GetPoliticalMovementCategory
1057
+ Definition type: Promote
1058
+ Return type: PoliticalMovementCategory
1059
+
1060
+ -----------------------
1061
+
1062
+ Scope.GetPoliticalMovementType
1063
+ Definition type: Promote
1064
+ Return type: PoliticalMovementType
1065
+
1066
+ -----------------------
1067
+
1068
+ Scope.GetPop
1069
+ Definition type: Promote
1070
+ Return type: Pop
1071
+
1072
+ -----------------------
1073
+
1074
+ Scope.GetPopType
1075
+ Definition type: Promote
1076
+ Return type: PopType
1077
+
1078
+ -----------------------
1079
+
1080
+ Scope.GetPowerBloc
1081
+ Definition type: Promote
1082
+ Return type: PowerBloc
1083
+
1084
+ -----------------------
1085
+
1086
+ Scope.GetPowerBlocIdentity
1087
+ Definition type: Promote
1088
+ Return type: PowerBlocIdentity
1089
+
1090
+ -----------------------
1091
+
1092
+ Scope.GetPowerBlocPrinciple
1093
+ Definition type: Promote
1094
+ Return type: PowerBlocPrinciple
1095
+
1096
+ -----------------------
1097
+
1098
+ Scope.GetPowerBlocPrincipleGroup
1099
+ Definition type: Promote
1100
+ Return type: PowerBlocPrincipleGroup
1101
+
1102
+ -----------------------
1103
+
1104
+ Scope.GetProvince
1105
+ Definition type: Promote
1106
+ Return type: Province
1107
+
1108
+ -----------------------
1109
+
1110
+ Scope.GetReligion
1111
+ Definition type: Promote
1112
+ Return type: Religion
1113
+
1114
+ -----------------------
1115
+
1116
+ Scope.GetShip
1117
+ Definition type: Promote
1118
+ Return type: Ship
1119
+
1120
+ -----------------------
1121
+
1122
+ Scope.GetShipGroup
1123
+ Definition type: Promote
1124
+ Return type: ShipGroup
1125
+
1126
+ -----------------------
1127
+
1128
+ Scope.GetShipModificationType
1129
+ Definition type: Promote
1130
+ Return type: ShipModificationType
1131
+
1132
+ -----------------------
1133
+
1134
+ Scope.GetShipType
1135
+ Definition type: Promote
1136
+ Return type: ShipType
1137
+
1138
+ -----------------------
1139
+
1140
+ Scope.GetShippingLane
1141
+ Definition type: Promote
1142
+ Return type: ShippingLane
1143
+
1144
+ -----------------------
1145
+
1146
+ Scope.GetState
1147
+ Definition type: Promote
1148
+ Return type: State
1149
+
1150
+ -----------------------
1151
+
1152
+ Scope.GetStateGoods
1153
+ Definition type: Promote
1154
+ Return type: StateGoods
1155
+
1156
+ -----------------------
1157
+
1158
+ Scope.GetStateRegion
1159
+ Definition type: Promote
1160
+ Return type: StateRegion
1161
+
1162
+ -----------------------
1163
+
1164
+ Scope.GetStateTrait
1165
+ Definition type: Promote
1166
+ Return type: StateTrait
1167
+
1168
+ -----------------------
1169
+
1170
+ Scope.GetStrait
1171
+ Definition type: Promote
1172
+ Return type: Strait
1173
+
1174
+ -----------------------
1175
+
1176
+ Scope.GetStraitDefinition
1177
+ Definition type: Promote
1178
+ Return type: StraitDefinition
1179
+
1180
+ -----------------------
1181
+
1182
+ Scope.GetStrategicRegion
1183
+ Definition type: Promote
1184
+ Return type: StrategicRegion
1185
+
1186
+ -----------------------
1187
+
1188
+ Scope.GetSway
1189
+ Definition type: Promote
1190
+ Return type: Sway
1191
+
1192
+ -----------------------
1193
+
1194
+ Scope.GetTechnology
1195
+ Definition type: Promote
1196
+ Return type: Technology
1197
+
1198
+ -----------------------
1199
+
1200
+ Scope.GetTheater
1201
+ Definition type: Promote
1202
+ Return type: Theater
1203
+
1204
+ -----------------------
1205
+
1206
+ Scope.GetTreaty
1207
+ Definition type: Promote
1208
+ Return type: Treaty
1209
+
1210
+ -----------------------
1211
+
1212
+ Scope.GetTreatyArticle
1213
+ Definition type: Promote
1214
+ Return type: Article
1215
+
1216
+ -----------------------
1217
+
1218
+ Scope.GetVariable( Arg0 )
1219
+ Definition type: Promote
1220
+ Return type: Scope
1221
+
1222
+ -----------------------
1223
+
1224
+ Scope.GetVariableFromVariableMap( Arg0, Arg1 )
1225
+ Definition type: Promote
1226
+ Return type: Scope
1227
+
1228
+ -----------------------
1229
+
1230
+ Scope.GetWar
1231
+ Definition type: Promote
1232
+ Return type: War
1233
+
1234
+ -----------------------
1235
+
1236
+ Scope.GetWarGoal
1237
+ Definition type: Promote
1238
+ Return type: WarGoal
1239
+
1240
+ -----------------------
1241
+
1242
+ Scope.GetWarGoalType
1243
+ Definition type: Promote
1244
+ Return type: WarGoalType
1245
+
1246
+ -----------------------
1247
+
1248
+ Scope.Var( Arg0 )
1249
+ Definition type: Promote
1250
+ Return type: Scope
1251
+
1252
+ -----------------------
1253
+
1254
+ Scope.AccessSelf
1255
+ Definition type: Function
1256
+ Return type: [unregistered]
1257
+
1258
+ -----------------------
1259
+
1260
+ Scope.GetFlagName
1261
+ Definition type: Function
1262
+ Return type: CString
1263
+
1264
+ -----------------------
1265
+
1266
+ Scope.GetList( Arg0 )
1267
+ Definition type: Function
1268
+ Return type: [unregistered]
1269
+
1270
+ -----------------------
1271
+
1272
+ Scope.GetMapKeys( Arg0 )
1273
+ Definition type: Function
1274
+ Return type: [unregistered]
1275
+
1276
+ -----------------------
1277
+
1278
+ Scope.GetScriptValueDesc( Arg0 )
1279
+ Definition type: Function
1280
+ Return type: CString
1281
+
1282
+ -----------------------
1283
+
1284
+ Scope.GetValue
1285
+ Definition type: Function
1286
+ Return type: CFixedPoint
1287
+
1288
+ -----------------------
1289
+
1290
+ Scope.GetValueWithDefault( Arg0 )
1291
+ Definition type: Function
1292
+ Return type: CFixedPoint
1293
+
1294
+ -----------------------
1295
+
1296
+ Scope.IsSet
1297
+ Definition type: Function
1298
+ Return type: bool
1299
+
1300
+ -----------------------
1301
+
1302
+ Scope.ScriptValue( Arg0 )
1303
+ Definition type: Function
1304
+ Return type: CFixedPoint
1305
+
1306
+ -----------------------
1307
+
1308
+ Scope.Self
1309
+ Definition type: Function
1310
+ Return type: [unregistered]
1311
+
1312
+ -----------------------
1313
+
1314
+ Scope.VarRemaining( Arg0 )
1315
+ Definition type: Function
1316
+ Return type: int32
1317
+
1318
+ -----------------------
1319
+
1320
+ Scope.VariableMapContainsKey( Arg0, Arg1 )
1321
+ Definition type: Function
1322
+ Return type: bool
1323
+
1324
+ -----------------------
1325
+
1326
+ Scope.VariableMapContainsValue( Arg0, Arg1 )
1327
+ Definition type: Function
1328
+ Return type: bool
1329
+
1330
+ -----------------------
1331
+
1332
+ Scope.VariableMapExists( Arg0 )
1333
+ Definition type: Function
1334
+ Return type: [unregistered]
1335
+
1336
+ -----------------------
1337
+
1338
+ ScriptedGui
1339
+ Definition type: Type
1340
+
1341
+ -----------------------
1342
+
1343
+ ScriptedGui.AccessSelf
1344
+ Definition type: Function
1345
+ Return type: [unregistered]
1346
+
1347
+ -----------------------
1348
+
1349
+ ScriptedGui.BuildTooltip( Arg0 )
1350
+ Definition type: Function
1351
+ Return type: CString
1352
+
1353
+ -----------------------
1354
+
1355
+ ScriptedGui.Execute( Arg0 )
1356
+ Definition type: Function
1357
+ Return type: void
1358
+
1359
+ -----------------------
1360
+
1361
+ ScriptedGui.ExecuteTooltip( Arg0 )
1362
+ Definition type: Function
1363
+ Return type: CString
1364
+
1365
+ -----------------------
1366
+
1367
+ ScriptedGui.IsShown( Arg0 )
1368
+ Definition type: Function
1369
+ Return type: bool
1370
+
1371
+ -----------------------
1372
+
1373
+ ScriptedGui.IsShownTooltip( Arg0 )
1374
+ Definition type: Function
1375
+ Return type: CString
1376
+
1377
+ -----------------------
1378
+
1379
+ ScriptedGui.IsValid( Arg0 )
1380
+ Definition type: Function
1381
+ Return type: bool
1382
+
1383
+ -----------------------
1384
+
1385
+ ScriptedGui.IsValidTooltip( Arg0 )
1386
+ Definition type: Function
1387
+ Return type: CString
1388
+
1389
+ -----------------------
1390
+
1391
+ ScriptedGui.Self
1392
+ Definition type: Function
1393
+ Return type: [unregistered]
1394
+
1395
+ -----------------------
1396
+
1397
+ TopScope
1398
+ Definition type: Type
1399
+
1400
+ -----------------------
1401
+
1402
+ TopScope.AddList( Arg0, Arg1 )
1403
+ Definition type: Promote
1404
+ Return type: TopScope
1405
+
1406
+ -----------------------
1407
+
1408
+ TopScope.AddScope( Arg0, Arg1 )
1409
+ Definition type: Promote
1410
+ Return type: TopScope
1411
+
1412
+ -----------------------
1413
+
1414
+ TopScope.GetLocalVariable( Arg0 )
1415
+ Definition type: Promote
1416
+ Return type: Scope
1417
+
1418
+ -----------------------
1419
+
1420
+ TopScope.GetRootScope
1421
+ Definition type: Promote
1422
+ Return type: Scope
1423
+
1424
+ -----------------------
1425
+
1426
+ TopScope.SetRoot( Arg0 )
1427
+ Definition type: Promote
1428
+ Return type: TopScope
1429
+
1430
+ -----------------------
1431
+
1432
+ TopScope.gsIG( Arg0 )
1433
+ Definition type: Promote
1434
+ Return type: InterestGroup
1435
+
1436
+ -----------------------
1437
+
1438
+ TopScope.gsInterestGroup( Arg0 )
1439
+ Definition type: Promote
1440
+ Return type: InterestGroup
1441
+
1442
+ -----------------------
1443
+
1444
+ TopScope.sB( Arg0 )
1445
+ Definition type: Promote
1446
+ Return type: Building
1447
+
1448
+ -----------------------
1449
+
1450
+ TopScope.sBG( Arg0 )
1451
+ Definition type: Promote
1452
+ Return type: BuildingGroup
1453
+
1454
+ -----------------------
1455
+
1456
+ TopScope.sBT( Arg0 )
1457
+ Definition type: Promote
1458
+ Return type: BuildingType
1459
+
1460
+ -----------------------
1461
+
1462
+ TopScope.sBuilding( Arg0 )
1463
+ Definition type: Promote
1464
+ Return type: Building
1465
+
1466
+ -----------------------
1467
+
1468
+ TopScope.sBuildingGroup( Arg0 )
1469
+ Definition type: Promote
1470
+ Return type: BuildingGroup
1471
+
1472
+ -----------------------
1473
+
1474
+ TopScope.sBuildingType( Arg0 )
1475
+ Definition type: Promote
1476
+ Return type: BuildingType
1477
+
1478
+ -----------------------
1479
+
1480
+ TopScope.sC( Arg0 )
1481
+ Definition type: Promote
1482
+ Return type: Country
1483
+
1484
+ -----------------------
1485
+
1486
+ TopScope.sCF( Arg0 )
1487
+ Definition type: Promote
1488
+ Return type: CountryFormation
1489
+
1490
+ -----------------------
1491
+
1492
+ TopScope.sCM( Arg0 )
1493
+ Definition type: Promote
1494
+ Return type: Company
1495
+
1496
+ -----------------------
1497
+
1498
+ TopScope.sCMT( Arg0 )
1499
+ Definition type: Promote
1500
+ Return type: CompanyType
1501
+
1502
+ -----------------------
1503
+
1504
+ TopScope.sCOT( Arg0 )
1505
+ Definition type: Promote
1506
+ Return type: CommanderOrderType
1507
+
1508
+ -----------------------
1509
+
1510
+ TopScope.sCR( Arg0 )
1511
+ Definition type: Promote
1512
+ Return type: CharacterRole
1513
+
1514
+ -----------------------
1515
+
1516
+ TopScope.sCU( Arg0 )
1517
+ Definition type: Promote
1518
+ Return type: Culture
1519
+
1520
+ -----------------------
1521
+
1522
+ TopScope.sCW( Arg0 )
1523
+ Definition type: Promote
1524
+ Return type: CivilWar
1525
+
1526
+ -----------------------
1527
+
1528
+ TopScope.sCha( Arg0 )
1529
+ Definition type: Promote
1530
+ Return type: Character
1531
+
1532
+ -----------------------
1533
+
1534
+ TopScope.sCharacter( Arg0 )
1535
+ Definition type: Promote
1536
+ Return type: Character
1537
+
1538
+ -----------------------
1539
+
1540
+ TopScope.sCharacterRole( Arg0 )
1541
+ Definition type: Promote
1542
+ Return type: CharacterRole
1543
+
1544
+ -----------------------
1545
+
1546
+ TopScope.sCivilWar( Arg0 )
1547
+ Definition type: Promote
1548
+ Return type: CivilWar
1549
+
1550
+ -----------------------
1551
+
1552
+ TopScope.sCommanderOrderType( Arg0 )
1553
+ Definition type: Promote
1554
+ Return type: CommanderOrderType
1555
+
1556
+ -----------------------
1557
+
1558
+ TopScope.sCompany( Arg0 )
1559
+ Definition type: Promote
1560
+ Return type: Company
1561
+
1562
+ -----------------------
1563
+
1564
+ TopScope.sCompanyType( Arg0 )
1565
+ Definition type: Promote
1566
+ Return type: CompanyType
1567
+
1568
+ -----------------------
1569
+
1570
+ TopScope.sCountry( Arg0 )
1571
+ Definition type: Promote
1572
+ Return type: Country
1573
+
1574
+ -----------------------
1575
+
1576
+ TopScope.sCountryFormation( Arg0 )
1577
+ Definition type: Promote
1578
+ Return type: CountryFormation
1579
+
1580
+ -----------------------
1581
+
1582
+ TopScope.sCulture( Arg0 )
1583
+ Definition type: Promote
1584
+ Return type: Culture
1585
+
1586
+ -----------------------
1587
+
1588
+ TopScope.sD( Arg0 )
1589
+ Definition type: Promote
1590
+ Return type: Decision
1591
+
1592
+ -----------------------
1593
+
1594
+ TopScope.sDA( Arg0 )
1595
+ Definition type: Promote
1596
+ Return type: DiplomaticAction
1597
+
1598
+ -----------------------
1599
+
1600
+ TopScope.sDC( Arg0 )
1601
+ Definition type: Promote
1602
+ Return type: DiplomaticCatalyst
1603
+
1604
+ -----------------------
1605
+
1606
+ TopScope.sDCC( Arg0 )
1607
+ Definition type: Promote
1608
+ Return type: DiplomaticCatalystCategory
1609
+
1610
+ -----------------------
1611
+
1612
+ TopScope.sDCT( Arg0 )
1613
+ Definition type: Promote
1614
+ Return type: DiplomaticCatalystType
1615
+
1616
+ -----------------------
1617
+
1618
+ TopScope.sDD( Arg0 )
1619
+ Definition type: Promote
1620
+ Return type: DiplomaticDemand
1621
+
1622
+ -----------------------
1623
+
1624
+ TopScope.sDP( Arg0 )
1625
+ Definition type: Promote
1626
+ Return type: DiplomaticPlay
1627
+
1628
+ -----------------------
1629
+
1630
+ TopScope.sDPT( Arg0 )
1631
+ Definition type: Promote
1632
+ Return type: DiplomaticPlayType
1633
+
1634
+ -----------------------
1635
+
1636
+ TopScope.sDR( Arg0 )
1637
+ Definition type: Promote
1638
+ Return type: DiplomaticRelations
1639
+
1640
+ -----------------------
1641
+
1642
+ TopScope.sDecision( Arg0 )
1643
+ Definition type: Promote
1644
+ Return type: Decision
1645
+
1646
+ -----------------------
1647
+
1648
+ TopScope.sDiplomaticAction( Arg0 )
1649
+ Definition type: Promote
1650
+ Return type: DiplomaticAction
1651
+
1652
+ -----------------------
1653
+
1654
+ TopScope.sDiplomaticCatalyst( Arg0 )
1655
+ Definition type: Promote
1656
+ Return type: DiplomaticCatalyst
1657
+
1658
+ -----------------------
1659
+
1660
+ TopScope.sDiplomaticCatalystCategory( Arg0 )
1661
+ Definition type: Promote
1662
+ Return type: DiplomaticCatalystCategory
1663
+
1664
+ -----------------------
1665
+
1666
+ TopScope.sDiplomaticCatalystType( Arg0 )
1667
+ Definition type: Promote
1668
+ Return type: DiplomaticCatalystType
1669
+
1670
+ -----------------------
1671
+
1672
+ TopScope.sDiplomaticDemand( Arg0 )
1673
+ Definition type: Promote
1674
+ Return type: DiplomaticDemand
1675
+
1676
+ -----------------------
1677
+
1678
+ TopScope.sDiplomaticPact( Arg0 )
1679
+ Definition type: Promote
1680
+ Return type: DiplomaticPact
1681
+
1682
+ -----------------------
1683
+
1684
+ TopScope.sDiplomaticPlay( Arg0 )
1685
+ Definition type: Promote
1686
+ Return type: DiplomaticPlay
1687
+
1688
+ -----------------------
1689
+
1690
+ TopScope.sDiplomaticPlayType( Arg0 )
1691
+ Definition type: Promote
1692
+ Return type: DiplomaticPlayType
1693
+
1694
+ -----------------------
1695
+
1696
+ TopScope.sDiplomaticRelations( Arg0 )
1697
+ Definition type: Promote
1698
+ Return type: DiplomaticRelations
1699
+
1700
+ -----------------------
1701
+
1702
+ TopScope.sF( Arg0 )
1703
+ Definition type: Promote
1704
+ Return type: Front
1705
+
1706
+ -----------------------
1707
+
1708
+ TopScope.sFront( Arg0 )
1709
+ Definition type: Promote
1710
+ Return type: Front
1711
+
1712
+ -----------------------
1713
+
1714
+ TopScope.sG( Arg0 )
1715
+ Definition type: Promote
1716
+ Return type: Goods
1717
+
1718
+ -----------------------
1719
+
1720
+ TopScope.sGoods( Arg0 )
1721
+ Definition type: Promote
1722
+ Return type: Goods
1723
+
1724
+ -----------------------
1725
+
1726
+ TopScope.sHC( Arg0 )
1727
+ Definition type: Promote
1728
+ Return type: HarvestCondition
1729
+
1730
+ -----------------------
1731
+
1732
+ TopScope.sHCA( Arg0 )
1733
+ Definition type: Promote
1734
+ Return type: HarvestConditionArea
1735
+
1736
+ -----------------------
1737
+
1738
+ TopScope.sHCT( Arg0 )
1739
+ Definition type: Promote
1740
+ Return type: HarvestConditionType
1741
+
1742
+ -----------------------
1743
+
1744
+ TopScope.sHQ( Arg0 )
1745
+ Definition type: Promote
1746
+ Return type: Hq
1747
+
1748
+ -----------------------
1749
+
1750
+ TopScope.sHarvestCondition( Arg0 )
1751
+ Definition type: Promote
1752
+ Return type: HarvestCondition
1753
+
1754
+ -----------------------
1755
+
1756
+ TopScope.sHarvestConditionArea( Arg0 )
1757
+ Definition type: Promote
1758
+ Return type: HarvestConditionArea
1759
+
1760
+ -----------------------
1761
+
1762
+ TopScope.sHarvestConditionType( Arg0 )
1763
+ Definition type: Promote
1764
+ Return type: HarvestConditionType
1765
+
1766
+ -----------------------
1767
+
1768
+ TopScope.sIGT( Arg0 )
1769
+ Definition type: Promote
1770
+ Return type: InterestGroupTrait
1771
+
1772
+ -----------------------
1773
+
1774
+ TopScope.sIdeology( Arg0 )
1775
+ Definition type: Promote
1776
+ Return type: Ideology
1777
+
1778
+ -----------------------
1779
+
1780
+ TopScope.sInstitution( Arg0 )
1781
+ Definition type: Promote
1782
+ Return type: Institution
1783
+
1784
+ -----------------------
1785
+
1786
+ TopScope.sInstitutionType( Arg0 )
1787
+ Definition type: Promote
1788
+ Return type: InstitutionType
1789
+
1790
+ -----------------------
1791
+
1792
+ TopScope.sInterestGroupTrait( Arg0 )
1793
+ Definition type: Promote
1794
+ Return type: InterestGroupTrait
1795
+
1796
+ -----------------------
1797
+
1798
+ TopScope.sInterestTierType( Arg0 )
1799
+ Definition type: Promote
1800
+ Return type: InterestTierType
1801
+
1802
+ -----------------------
1803
+
1804
+ TopScope.sJE( Arg0 )
1805
+ Definition type: Promote
1806
+ Return type: JournalEntry
1807
+
1808
+ -----------------------
1809
+
1810
+ TopScope.sJournalEntry( Arg0 )
1811
+ Definition type: Promote
1812
+ Return type: JournalEntry
1813
+
1814
+ -----------------------
1815
+
1816
+ TopScope.sL( Arg0 )
1817
+ Definition type: Promote
1818
+ Return type: Law
1819
+
1820
+ -----------------------
1821
+
1822
+ TopScope.sLaw( Arg0 )
1823
+ Definition type: Promote
1824
+ Return type: Law
1825
+
1826
+ -----------------------
1827
+
1828
+ TopScope.sLawType( Arg0 )
1829
+ Definition type: Promote
1830
+ Return type: LawType
1831
+
1832
+ -----------------------
1833
+
1834
+ TopScope.sMilitaryFormation( Arg0 )
1835
+ Definition type: Promote
1836
+ Return type: MilitaryFormation
1837
+
1838
+ -----------------------
1839
+
1840
+ TopScope.sP( Arg0 )
1841
+ Definition type: Promote
1842
+ Return type: Party
1843
+
1844
+ -----------------------
1845
+
1846
+ TopScope.sPB( Arg0 )
1847
+ Definition type: Promote
1848
+ Return type: PowerBloc
1849
+
1850
+ -----------------------
1851
+
1852
+ TopScope.sPBI( Arg0 )
1853
+ Definition type: Promote
1854
+ Return type: PowerBlocIdentity
1855
+
1856
+ -----------------------
1857
+
1858
+ TopScope.sPBP( Arg0 )
1859
+ Definition type: Promote
1860
+ Return type: PowerBlocPrinciple
1861
+
1862
+ -----------------------
1863
+
1864
+ TopScope.sPL( Arg0 )
1865
+ Definition type: Promote
1866
+ Return type: PoliticalLobby
1867
+
1868
+ -----------------------
1869
+
1870
+ TopScope.sPLA( Arg0 )
1871
+ Definition type: Promote
1872
+ Return type: PoliticalLobbyAppeasementFactor
1873
+
1874
+ -----------------------
1875
+
1876
+ TopScope.sPLT( Arg0 )
1877
+ Definition type: Promote
1878
+ Return type: PoliticalLobbyType
1879
+
1880
+ -----------------------
1881
+
1882
+ TopScope.sPM( Arg0 )
1883
+ Definition type: Promote
1884
+ Return type: PoliticalMovement
1885
+
1886
+ -----------------------
1887
+
1888
+ TopScope.sPMC( Arg0 )
1889
+ Definition type: Promote
1890
+ Return type: PoliticalMovementCategory
1891
+
1892
+ -----------------------
1893
+
1894
+ TopScope.sPMT( Arg0 )
1895
+ Definition type: Promote
1896
+ Return type: PoliticalMovementType
1897
+
1898
+ -----------------------
1899
+
1900
+ TopScope.sPT( Arg0 )
1901
+ Definition type: Promote
1902
+ Return type: PopType
1903
+
1904
+ -----------------------
1905
+
1906
+ TopScope.sPact( Arg0 )
1907
+ Definition type: Promote
1908
+ Return type: DiplomaticPact
1909
+
1910
+ -----------------------
1911
+
1912
+ TopScope.sParty( Arg0 )
1913
+ Definition type: Promote
1914
+ Return type: Party
1915
+
1916
+ -----------------------
1917
+
1918
+ TopScope.sPoliticalLobby( Arg0 )
1919
+ Definition type: Promote
1920
+ Return type: PoliticalLobby
1921
+
1922
+ -----------------------
1923
+
1924
+ TopScope.sPoliticalLobbyAppeasement( Arg0 )
1925
+ Definition type: Promote
1926
+ Return type: PoliticalLobbyAppeasementFactor
1927
+
1928
+ -----------------------
1929
+
1930
+ TopScope.sPoliticalLobbyType( Arg0 )
1931
+ Definition type: Promote
1932
+ Return type: PoliticalLobbyType
1933
+
1934
+ -----------------------
1935
+
1936
+ TopScope.sPoliticalMovement( Arg0 )
1937
+ Definition type: Promote
1938
+ Return type: PoliticalMovement
1939
+
1940
+ -----------------------
1941
+
1942
+ TopScope.sPoliticalMovementCategory( Arg0 )
1943
+ Definition type: Promote
1944
+ Return type: PoliticalMovementCategory
1945
+
1946
+ -----------------------
1947
+
1948
+ TopScope.sPoliticalMovementType( Arg0 )
1949
+ Definition type: Promote
1950
+ Return type: PoliticalMovementType
1951
+
1952
+ -----------------------
1953
+
1954
+ TopScope.sPop( Arg0 )
1955
+ Definition type: Promote
1956
+ Return type: Pop
1957
+
1958
+ -----------------------
1959
+
1960
+ TopScope.sPopType( Arg0 )
1961
+ Definition type: Promote
1962
+ Return type: PopType
1963
+
1964
+ -----------------------
1965
+
1966
+ TopScope.sPowerBloc( Arg0 )
1967
+ Definition type: Promote
1968
+ Return type: PowerBloc
1969
+
1970
+ -----------------------
1971
+
1972
+ TopScope.sPowerBlocIdentity( Arg0 )
1973
+ Definition type: Promote
1974
+ Return type: PowerBlocIdentity
1975
+
1976
+ -----------------------
1977
+
1978
+ TopScope.sPowerBlocPrinciple( Arg0 )
1979
+ Definition type: Promote
1980
+ Return type: PowerBlocPrinciple
1981
+
1982
+ -----------------------
1983
+
1984
+ TopScope.sPowerBlocPrincipleGroup( Arg0 )
1985
+ Definition type: Promote
1986
+ Return type: PowerBlocPrincipleGroup
1987
+
1988
+ -----------------------
1989
+
1990
+ TopScope.sProvince( Arg0 )
1991
+ Definition type: Promote
1992
+ Return type: Province
1993
+
1994
+ -----------------------
1995
+
1996
+ TopScope.sReligion( Arg0 )
1997
+ Definition type: Promote
1998
+ Return type: Religion
1999
+
2000
+ -----------------------
2001
+
2002
+ TopScope.sS( Arg0 )
2003
+ Definition type: Promote
2004
+ Return type: State
2005
+
2006
+ -----------------------
2007
+
2008
+ TopScope.sSR( Arg0 )
2009
+ Definition type: Promote
2010
+ Return type: StrategicRegion
2011
+
2012
+ -----------------------
2013
+
2014
+ TopScope.sSW( Arg0 )
2015
+ Definition type: Promote
2016
+ Return type: Sway
2017
+
2018
+ -----------------------
2019
+
2020
+ TopScope.sState( Arg0 )
2021
+ Definition type: Promote
2022
+ Return type: State
2023
+
2024
+ -----------------------
2025
+
2026
+ TopScope.sStateRegion( Arg0 )
2027
+ Definition type: Promote
2028
+ Return type: StateRegion
2029
+
2030
+ -----------------------
2031
+
2032
+ TopScope.sStrait( Arg0 )
2033
+ Definition type: Promote
2034
+ Return type: Strait
2035
+
2036
+ -----------------------
2037
+
2038
+ TopScope.sStrategicRegion( Arg0 )
2039
+ Definition type: Promote
2040
+ Return type: StrategicRegion
2041
+
2042
+ -----------------------
2043
+
2044
+ TopScope.sSway( Arg0 )
2045
+ Definition type: Promote
2046
+ Return type: Sway
2047
+
2048
+ -----------------------
2049
+
2050
+ TopScope.sT( Arg0 )
2051
+ Definition type: Promote
2052
+ Return type: Technology
2053
+
2054
+ -----------------------
2055
+
2056
+ TopScope.sTechnology( Arg0 )
2057
+ Definition type: Promote
2058
+ Return type: Technology
2059
+
2060
+ -----------------------
2061
+
2062
+ TopScope.sTreaty( Arg0 )
2063
+ Definition type: Promote
2064
+ Return type: Treaty
2065
+
2066
+ -----------------------
2067
+
2068
+ TopScope.sTreatyArticle( Arg0 )
2069
+ Definition type: Promote
2070
+ Return type: Article
2071
+
2072
+ -----------------------
2073
+
2074
+ TopScope.sW( Arg0 )
2075
+ Definition type: Promote
2076
+ Return type: War
2077
+
2078
+ -----------------------
2079
+
2080
+ TopScope.sWar( Arg0 )
2081
+ Definition type: Promote
2082
+ Return type: War
2083
+
2084
+ -----------------------
2085
+
2086
+ TopScope.sWarGoal( Arg0 )
2087
+ Definition type: Promote
2088
+ Return type: WarGoal
2089
+
2090
+ -----------------------
2091
+
2092
+ TopScope.sWarGoalType( Arg0 )
2093
+ Definition type: Promote
2094
+ Return type: WarGoalType
2095
+
2096
+ -----------------------
2097
+
2098
+ TopScope.AccessSelf
2099
+ Definition type: Function
2100
+ Return type: [unregistered]
2101
+
2102
+ -----------------------
2103
+
2104
+ TopScope.End
2105
+ Definition type: Function
2106
+ Return type: TopScope
2107
+
2108
+ -----------------------
2109
+
2110
+ TopScope.GetFlagName( Arg0 )
2111
+ Definition type: Function
2112
+ Return type: CString
2113
+
2114
+ -----------------------
2115
+
2116
+ TopScope.GetLocalVariable( Arg0 )
2117
+ Definition type: Function
2118
+ Return type: [unregistered]
2119
+
2120
+ -----------------------
2121
+
2122
+ TopScope.GetRootScope
2123
+ Definition type: Function
2124
+ Return type: [unregistered]
2125
+
2126
+ -----------------------
2127
+
2128
+ TopScope.GetScriptValueDesc( Arg0 )
2129
+ Definition type: Function
2130
+ Return type: CString
2131
+
2132
+ -----------------------
2133
+
2134
+ TopScope.GetValue( Arg0 )
2135
+ Definition type: Function
2136
+ Return type: CFixedPoint
2137
+
2138
+ -----------------------
2139
+
2140
+ TopScope.ScriptValue( Arg0 )
2141
+ Definition type: Function
2142
+ Return type: CFixedPoint
2143
+
2144
+ -----------------------
2145
+
2146
+ TopScope.Self
2147
+ Definition type: Function
2148
+ Return type: [unregistered]
2149
+
2150
+ -----------------------
2151
+
2152
+ TopScope.gsIG( Arg0 )
2153
+ Definition type: Function
2154
+ Return type: [unregistered]
2155
+
2156
+ -----------------------
2157
+
2158
+ TopScope.gsInterestGroup( Arg0 )
2159
+ Definition type: Function
2160
+ Return type: [unregistered]
2161
+
2162
+ -----------------------
2163
+
2164
+ TopScope.sB( Arg0 )
2165
+ Definition type: Function
2166
+ Return type: [unregistered]
2167
+
2168
+ -----------------------
2169
+
2170
+ TopScope.sBG( Arg0 )
2171
+ Definition type: Function
2172
+ Return type: [unregistered]
2173
+
2174
+ -----------------------
2175
+
2176
+ TopScope.sBT( Arg0 )
2177
+ Definition type: Function
2178
+ Return type: [unregistered]
2179
+
2180
+ -----------------------
2181
+
2182
+ TopScope.sBuilding( Arg0 )
2183
+ Definition type: Function
2184
+ Return type: [unregistered]
2185
+
2186
+ -----------------------
2187
+
2188
+ TopScope.sBuildingGroup( Arg0 )
2189
+ Definition type: Function
2190
+ Return type: [unregistered]
2191
+
2192
+ -----------------------
2193
+
2194
+ TopScope.sBuildingType( Arg0 )
2195
+ Definition type: Function
2196
+ Return type: [unregistered]
2197
+
2198
+ -----------------------
2199
+
2200
+ TopScope.sC( Arg0 )
2201
+ Definition type: Function
2202
+ Return type: [unregistered]
2203
+
2204
+ -----------------------
2205
+
2206
+ TopScope.sCF( Arg0 )
2207
+ Definition type: Function
2208
+ Return type: [unregistered]
2209
+
2210
+ -----------------------
2211
+
2212
+ TopScope.sCM( Arg0 )
2213
+ Definition type: Function
2214
+ Return type: [unregistered]
2215
+
2216
+ -----------------------
2217
+
2218
+ TopScope.sCMT( Arg0 )
2219
+ Definition type: Function
2220
+ Return type: [unregistered]
2221
+
2222
+ -----------------------
2223
+
2224
+ TopScope.sCOT( Arg0 )
2225
+ Definition type: Function
2226
+ Return type: [unregistered]
2227
+
2228
+ -----------------------
2229
+
2230
+ TopScope.sCR( Arg0 )
2231
+ Definition type: Function
2232
+ Return type: [unregistered]
2233
+
2234
+ -----------------------
2235
+
2236
+ TopScope.sCU( Arg0 )
2237
+ Definition type: Function
2238
+ Return type: [unregistered]
2239
+
2240
+ -----------------------
2241
+
2242
+ TopScope.sCW( Arg0 )
2243
+ Definition type: Function
2244
+ Return type: [unregistered]
2245
+
2246
+ -----------------------
2247
+
2248
+ TopScope.sCha( Arg0 )
2249
+ Definition type: Function
2250
+ Return type: [unregistered]
2251
+
2252
+ -----------------------
2253
+
2254
+ TopScope.sCharacter( Arg0 )
2255
+ Definition type: Function
2256
+ Return type: [unregistered]
2257
+
2258
+ -----------------------
2259
+
2260
+ TopScope.sCharacterRole( Arg0 )
2261
+ Definition type: Function
2262
+ Return type: [unregistered]
2263
+
2264
+ -----------------------
2265
+
2266
+ TopScope.sCivilWar( Arg0 )
2267
+ Definition type: Function
2268
+ Return type: [unregistered]
2269
+
2270
+ -----------------------
2271
+
2272
+ TopScope.sCommanderOrderType( Arg0 )
2273
+ Definition type: Function
2274
+ Return type: [unregistered]
2275
+
2276
+ -----------------------
2277
+
2278
+ TopScope.sCompany( Arg0 )
2279
+ Definition type: Function
2280
+ Return type: [unregistered]
2281
+
2282
+ -----------------------
2283
+
2284
+ TopScope.sCompanyType( Arg0 )
2285
+ Definition type: Function
2286
+ Return type: [unregistered]
2287
+
2288
+ -----------------------
2289
+
2290
+ TopScope.sCountry( Arg0 )
2291
+ Definition type: Function
2292
+ Return type: [unregistered]
2293
+
2294
+ -----------------------
2295
+
2296
+ TopScope.sCountryFormation( Arg0 )
2297
+ Definition type: Function
2298
+ Return type: [unregistered]
2299
+
2300
+ -----------------------
2301
+
2302
+ TopScope.sCulture( Arg0 )
2303
+ Definition type: Function
2304
+ Return type: [unregistered]
2305
+
2306
+ -----------------------
2307
+
2308
+ TopScope.sD( Arg0 )
2309
+ Definition type: Function
2310
+ Return type: [unregistered]
2311
+
2312
+ -----------------------
2313
+
2314
+ TopScope.sDA( Arg0 )
2315
+ Definition type: Function
2316
+ Return type: [unregistered]
2317
+
2318
+ -----------------------
2319
+
2320
+ TopScope.sDC( Arg0 )
2321
+ Definition type: Function
2322
+ Return type: [unregistered]
2323
+
2324
+ -----------------------
2325
+
2326
+ TopScope.sDCC( Arg0 )
2327
+ Definition type: Function
2328
+ Return type: [unregistered]
2329
+
2330
+ -----------------------
2331
+
2332
+ TopScope.sDCT( Arg0 )
2333
+ Definition type: Function
2334
+ Return type: [unregistered]
2335
+
2336
+ -----------------------
2337
+
2338
+ TopScope.sDD( Arg0 )
2339
+ Definition type: Function
2340
+ Return type: [unregistered]
2341
+
2342
+ -----------------------
2343
+
2344
+ TopScope.sDP( Arg0 )
2345
+ Definition type: Function
2346
+ Return type: [unregistered]
2347
+
2348
+ -----------------------
2349
+
2350
+ TopScope.sDPT( Arg0 )
2351
+ Definition type: Function
2352
+ Return type: [unregistered]
2353
+
2354
+ -----------------------
2355
+
2356
+ TopScope.sDR( Arg0 )
2357
+ Definition type: Function
2358
+ Return type: [unregistered]
2359
+
2360
+ -----------------------
2361
+
2362
+ TopScope.sDecision( Arg0 )
2363
+ Definition type: Function
2364
+ Return type: [unregistered]
2365
+
2366
+ -----------------------
2367
+
2368
+ TopScope.sDiplomaticAction( Arg0 )
2369
+ Definition type: Function
2370
+ Return type: [unregistered]
2371
+
2372
+ -----------------------
2373
+
2374
+ TopScope.sDiplomaticCatalyst( Arg0 )
2375
+ Definition type: Function
2376
+ Return type: [unregistered]
2377
+
2378
+ -----------------------
2379
+
2380
+ TopScope.sDiplomaticCatalystCategory( Arg0 )
2381
+ Definition type: Function
2382
+ Return type: [unregistered]
2383
+
2384
+ -----------------------
2385
+
2386
+ TopScope.sDiplomaticCatalystType( Arg0 )
2387
+ Definition type: Function
2388
+ Return type: [unregistered]
2389
+
2390
+ -----------------------
2391
+
2392
+ TopScope.sDiplomaticDemand( Arg0 )
2393
+ Definition type: Function
2394
+ Return type: [unregistered]
2395
+
2396
+ -----------------------
2397
+
2398
+ TopScope.sDiplomaticPact( Arg0 )
2399
+ Definition type: Function
2400
+ Return type: [unregistered]
2401
+
2402
+ -----------------------
2403
+
2404
+ TopScope.sDiplomaticPlay( Arg0 )
2405
+ Definition type: Function
2406
+ Return type: [unregistered]
2407
+
2408
+ -----------------------
2409
+
2410
+ TopScope.sDiplomaticPlayType( Arg0 )
2411
+ Definition type: Function
2412
+ Return type: [unregistered]
2413
+
2414
+ -----------------------
2415
+
2416
+ TopScope.sDiplomaticRelations( Arg0 )
2417
+ Definition type: Function
2418
+ Return type: [unregistered]
2419
+
2420
+ -----------------------
2421
+
2422
+ TopScope.sF( Arg0 )
2423
+ Definition type: Function
2424
+ Return type: [unregistered]
2425
+
2426
+ -----------------------
2427
+
2428
+ TopScope.sFront( Arg0 )
2429
+ Definition type: Function
2430
+ Return type: [unregistered]
2431
+
2432
+ -----------------------
2433
+
2434
+ TopScope.sG( Arg0 )
2435
+ Definition type: Function
2436
+ Return type: [unregistered]
2437
+
2438
+ -----------------------
2439
+
2440
+ TopScope.sGoods( Arg0 )
2441
+ Definition type: Function
2442
+ Return type: [unregistered]
2443
+
2444
+ -----------------------
2445
+
2446
+ TopScope.sHC( Arg0 )
2447
+ Definition type: Function
2448
+ Return type: [unregistered]
2449
+
2450
+ -----------------------
2451
+
2452
+ TopScope.sHCA( Arg0 )
2453
+ Definition type: Function
2454
+ Return type: [unregistered]
2455
+
2456
+ -----------------------
2457
+
2458
+ TopScope.sHCT( Arg0 )
2459
+ Definition type: Function
2460
+ Return type: [unregistered]
2461
+
2462
+ -----------------------
2463
+
2464
+ TopScope.sHQ( Arg0 )
2465
+ Definition type: Function
2466
+ Return type: [unregistered]
2467
+
2468
+ -----------------------
2469
+
2470
+ TopScope.sHarvestCondition( Arg0 )
2471
+ Definition type: Function
2472
+ Return type: [unregistered]
2473
+
2474
+ -----------------------
2475
+
2476
+ TopScope.sHarvestConditionArea( Arg0 )
2477
+ Definition type: Function
2478
+ Return type: [unregistered]
2479
+
2480
+ -----------------------
2481
+
2482
+ TopScope.sHarvestConditionType( Arg0 )
2483
+ Definition type: Function
2484
+ Return type: [unregistered]
2485
+
2486
+ -----------------------
2487
+
2488
+ TopScope.sIGT( Arg0 )
2489
+ Definition type: Function
2490
+ Return type: [unregistered]
2491
+
2492
+ -----------------------
2493
+
2494
+ TopScope.sIdeology( Arg0 )
2495
+ Definition type: Function
2496
+ Return type: [unregistered]
2497
+
2498
+ -----------------------
2499
+
2500
+ TopScope.sInstitution( Arg0 )
2501
+ Definition type: Function
2502
+ Return type: [unregistered]
2503
+
2504
+ -----------------------
2505
+
2506
+ TopScope.sInstitutionType( Arg0 )
2507
+ Definition type: Function
2508
+ Return type: [unregistered]
2509
+
2510
+ -----------------------
2511
+
2512
+ TopScope.sInterestGroupTrait( Arg0 )
2513
+ Definition type: Function
2514
+ Return type: [unregistered]
2515
+
2516
+ -----------------------
2517
+
2518
+ TopScope.sInterestTierType( Arg0 )
2519
+ Definition type: Function
2520
+ Return type: [unregistered]
2521
+
2522
+ -----------------------
2523
+
2524
+ TopScope.sJE( Arg0 )
2525
+ Definition type: Function
2526
+ Return type: [unregistered]
2527
+
2528
+ -----------------------
2529
+
2530
+ TopScope.sJournalEntry( Arg0 )
2531
+ Definition type: Function
2532
+ Return type: [unregistered]
2533
+
2534
+ -----------------------
2535
+
2536
+ TopScope.sL( Arg0 )
2537
+ Definition type: Function
2538
+ Return type: [unregistered]
2539
+
2540
+ -----------------------
2541
+
2542
+ TopScope.sLaw( Arg0 )
2543
+ Definition type: Function
2544
+ Return type: [unregistered]
2545
+
2546
+ -----------------------
2547
+
2548
+ TopScope.sLawType( Arg0 )
2549
+ Definition type: Function
2550
+ Return type: [unregistered]
2551
+
2552
+ -----------------------
2553
+
2554
+ TopScope.sMilitaryFormation( Arg0 )
2555
+ Definition type: Function
2556
+ Return type: [unregistered]
2557
+
2558
+ -----------------------
2559
+
2560
+ TopScope.sP( Arg0 )
2561
+ Definition type: Function
2562
+ Return type: [unregistered]
2563
+
2564
+ -----------------------
2565
+
2566
+ TopScope.sPB( Arg0 )
2567
+ Definition type: Function
2568
+ Return type: [unregistered]
2569
+
2570
+ -----------------------
2571
+
2572
+ TopScope.sPBI( Arg0 )
2573
+ Definition type: Function
2574
+ Return type: [unregistered]
2575
+
2576
+ -----------------------
2577
+
2578
+ TopScope.sPBP( Arg0 )
2579
+ Definition type: Function
2580
+ Return type: [unregistered]
2581
+
2582
+ -----------------------
2583
+
2584
+ TopScope.sPL( Arg0 )
2585
+ Definition type: Function
2586
+ Return type: [unregistered]
2587
+
2588
+ -----------------------
2589
+
2590
+ TopScope.sPLA( Arg0 )
2591
+ Definition type: Function
2592
+ Return type: [unregistered]
2593
+
2594
+ -----------------------
2595
+
2596
+ TopScope.sPLT( Arg0 )
2597
+ Definition type: Function
2598
+ Return type: [unregistered]
2599
+
2600
+ -----------------------
2601
+
2602
+ TopScope.sPM( Arg0 )
2603
+ Definition type: Function
2604
+ Return type: [unregistered]
2605
+
2606
+ -----------------------
2607
+
2608
+ TopScope.sPMC( Arg0 )
2609
+ Definition type: Function
2610
+ Return type: [unregistered]
2611
+
2612
+ -----------------------
2613
+
2614
+ TopScope.sPMT( Arg0 )
2615
+ Definition type: Function
2616
+ Return type: [unregistered]
2617
+
2618
+ -----------------------
2619
+
2620
+ TopScope.sPT( Arg0 )
2621
+ Definition type: Function
2622
+ Return type: [unregistered]
2623
+
2624
+ -----------------------
2625
+
2626
+ TopScope.sPact( Arg0 )
2627
+ Definition type: Function
2628
+ Return type: [unregistered]
2629
+
2630
+ -----------------------
2631
+
2632
+ TopScope.sParty( Arg0 )
2633
+ Definition type: Function
2634
+ Return type: [unregistered]
2635
+
2636
+ -----------------------
2637
+
2638
+ TopScope.sPoliticalLobby( Arg0 )
2639
+ Definition type: Function
2640
+ Return type: [unregistered]
2641
+
2642
+ -----------------------
2643
+
2644
+ TopScope.sPoliticalLobbyAppeasement( Arg0 )
2645
+ Definition type: Function
2646
+ Return type: [unregistered]
2647
+
2648
+ -----------------------
2649
+
2650
+ TopScope.sPoliticalLobbyType( Arg0 )
2651
+ Definition type: Function
2652
+ Return type: [unregistered]
2653
+
2654
+ -----------------------
2655
+
2656
+ TopScope.sPoliticalMovement( Arg0 )
2657
+ Definition type: Function
2658
+ Return type: [unregistered]
2659
+
2660
+ -----------------------
2661
+
2662
+ TopScope.sPoliticalMovementCategory( Arg0 )
2663
+ Definition type: Function
2664
+ Return type: [unregistered]
2665
+
2666
+ -----------------------
2667
+
2668
+ TopScope.sPoliticalMovementType( Arg0 )
2669
+ Definition type: Function
2670
+ Return type: [unregistered]
2671
+
2672
+ -----------------------
2673
+
2674
+ TopScope.sPop( Arg0 )
2675
+ Definition type: Function
2676
+ Return type: [unregistered]
2677
+
2678
+ -----------------------
2679
+
2680
+ TopScope.sPopType( Arg0 )
2681
+ Definition type: Function
2682
+ Return type: [unregistered]
2683
+
2684
+ -----------------------
2685
+
2686
+ TopScope.sPowerBloc( Arg0 )
2687
+ Definition type: Function
2688
+ Return type: [unregistered]
2689
+
2690
+ -----------------------
2691
+
2692
+ TopScope.sPowerBlocIdentity( Arg0 )
2693
+ Definition type: Function
2694
+ Return type: [unregistered]
2695
+
2696
+ -----------------------
2697
+
2698
+ TopScope.sPowerBlocPrinciple( Arg0 )
2699
+ Definition type: Function
2700
+ Return type: [unregistered]
2701
+
2702
+ -----------------------
2703
+
2704
+ TopScope.sPowerBlocPrincipleGroup( Arg0 )
2705
+ Definition type: Function
2706
+ Return type: [unregistered]
2707
+
2708
+ -----------------------
2709
+
2710
+ TopScope.sProvince( Arg0 )
2711
+ Definition type: Function
2712
+ Return type: [unregistered]
2713
+
2714
+ -----------------------
2715
+
2716
+ TopScope.sReligion( Arg0 )
2717
+ Definition type: Function
2718
+ Return type: [unregistered]
2719
+
2720
+ -----------------------
2721
+
2722
+ TopScope.sS( Arg0 )
2723
+ Definition type: Function
2724
+ Return type: [unregistered]
2725
+
2726
+ -----------------------
2727
+
2728
+ TopScope.sSR( Arg0 )
2729
+ Definition type: Function
2730
+ Return type: [unregistered]
2731
+
2732
+ -----------------------
2733
+
2734
+ TopScope.sSW( Arg0 )
2735
+ Definition type: Function
2736
+ Return type: [unregistered]
2737
+
2738
+ -----------------------
2739
+
2740
+ TopScope.sState( Arg0 )
2741
+ Definition type: Function
2742
+ Return type: [unregistered]
2743
+
2744
+ -----------------------
2745
+
2746
+ TopScope.sStateRegion( Arg0 )
2747
+ Definition type: Function
2748
+ Return type: [unregistered]
2749
+
2750
+ -----------------------
2751
+
2752
+ TopScope.sStrait( Arg0 )
2753
+ Definition type: Function
2754
+ Return type: [unregistered]
2755
+
2756
+ -----------------------
2757
+
2758
+ TopScope.sStrategicRegion( Arg0 )
2759
+ Definition type: Function
2760
+ Return type: [unregistered]
2761
+
2762
+ -----------------------
2763
+
2764
+ TopScope.sSway( Arg0 )
2765
+ Definition type: Function
2766
+ Return type: [unregistered]
2767
+
2768
+ -----------------------
2769
+
2770
+ TopScope.sT( Arg0 )
2771
+ Definition type: Function
2772
+ Return type: [unregistered]
2773
+
2774
+ -----------------------
2775
+
2776
+ TopScope.sTechnology( Arg0 )
2777
+ Definition type: Function
2778
+ Return type: [unregistered]
2779
+
2780
+ -----------------------
2781
+
2782
+ TopScope.sTreaty( Arg0 )
2783
+ Definition type: Function
2784
+ Return type: [unregistered]
2785
+
2786
+ -----------------------
2787
+
2788
+ TopScope.sTreatyArticle( Arg0 )
2789
+ Definition type: Function
2790
+ Return type: [unregistered]
2791
+
2792
+ -----------------------
2793
+
2794
+ TopScope.sW( Arg0 )
2795
+ Definition type: Function
2796
+ Return type: [unregistered]
2797
+
2798
+ -----------------------
2799
+
2800
+ TopScope.sWar( Arg0 )
2801
+ Definition type: Function
2802
+ Return type: [unregistered]
2803
+
2804
+ -----------------------
2805
+
2806
+ TopScope.sWarGoal( Arg0 )
2807
+ Definition type: Function
2808
+ Return type: [unregistered]
2809
+
2810
+ -----------------------
2811
+
2812
+ TopScope.sWarGoalType( Arg0 )
2813
+ Definition type: Function
2814
+ Return type: [unregistered]
2815
+
2816
+ -----------------------
2817
+