-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol.1st
650 lines (571 loc) · 16 KB
/
control.1st
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file contains all specifications pertaining to the operational control of
the data files. This includes usage pools, sources, sortsets, and other related
mechanisms.
-->
<document signature="Hero Lab Structure">
<!-- The "usagepool" elements allow the definition of usage pools that Hero Lab
will create and manage appropriately. Each usage pool can be tracked and
maintained uniquely for each actor, or can be associated with individual picks.
-->
<!-- Track up to 30 slots of damage adjustments applied
NOTE! We use the adjustments to enable undoing of each level -->
<usagepool
id="DmgAdjust"
name="Damage Adjustment"
abbrev="Dmg"
ishero="yes"
maximum="30"
persist="yes"/>
<!-- Track up to 30 slots of net damage sustained after each adjustment -->
<usagepool
id="DmgNet"
name="Net Damage Sustained"
abbrev="Dmg"
ishero="yes"
maximum="30"
persist="yes"/>
<!-- Track the total XP progression of the actor -->
<usagepool
id="TotalXP"
name="Total XP"
abbrev="XP"
ishero="yes"
persist="yes"/>
<!-- Track the total cash progression of the actor -->
<usagepool
id="TotalCash"
name="Total Cash"
abbrev="Cash"
ishero="yes"
persist="yes"/>
<!-- Track the XP adjustment associated with each entry in the journal -->
<usagepool
id="JrnlXP"
name="Journal Experience Points"
abbrev="XP"
ishero="no"
persist="no"/>
<!-- Track the cash adjustment associated with each entry in the journal -->
<usagepool
id="JrnlCash"
name="Journal Cash"
abbrev="Cash"
ishero="no"
persist="no"/>
<!-- The "source" elements define the assortment of user-configurable options for
each actor and their relative hierarchical structure. Each selectable source
automatically defines a "source" tag when enabled by the user, allowing the
data files to tailor behavior based on the presence (or not) of that tag.
-->
<!-- Supplements for 2nd Edition -->
<source
id="Supplement2E"
name="Supplements (2E)"
selectable="no"
sortorder="0"
description="Supplements for the game.">
</source>
<source
id="GameToolkit"
name="Game Toolkit"
parent="Supplement2E"
default="no"
reportable="no"
selectable="yes"
sortorder="1"
description="Options from the 2E Game Toolkit">
</source>
<!-- Supplements for 1st Edition -->
<source
id="Supplement"
name="Supplements (1E)"
selectable="no"
sortorder="0"
description="Supplements for the game.">
</source>
<source
id="UtopiaPlanetia"
name="Utopia Planetia Sourcebook"
parent="Supplement"
selectable="yes"
sortorder="0"
description="Starfleet Starship Sourcebook">
</source>
<source
id="Campaigns"
name="Campaign Sourcebooks"
parent="Supplement"
selectable="no"
sortorder="1"
description="Campaign Sourcebooks">
</source>
<source
id="Divisions"
name="Division Sourcebooks"
parent="Supplement"
selectable="no"
sortorder="2"
description="Sourcebooks for each division">
</source>
<source
id="Quadrants"
name="Quadrant Sourcebooks"
parent="Supplement"
selectable="no"
sortorder="3"
description="Sourcebooks for each quadrant">
</source>
<source
id="Characters"
name="Character Collections"
parent="Supplement"
selectable="no"
sortorder="4"
description="Character compilations">
</source>
<source
id="Continuing"
name="Continuing Missions (Unofficial)"
parent="Supplement"
selectable="yes"
sortorder="0"
description="Material from the Continuing Missions website">
</source>
<source
id="PlayerGuide"
name="Player's Guide"
parent="Campaigns"
default="no"
reportable="no"
sortorder="0"
description="Options from the Player's Guide">
</source>
<source
id="GMGuide"
name="Gamemaster's Guide"
parent="Campaigns"
default="no"
reportable="no"
selectable="no"
sortorder="1"
description="Options from the Gamemaster's Guide">
</source>
<source
id="Shackleton"
name="Shackleton Expanse Campaign Guide"
parent="Campaigns"
default="no"
reportable="no"
sortorder="3"
description="Options from the Shackleton Expanse Campaign Guide">
</source>
<source
id="Discovery"
name="Discovery Campaign Guide"
parent="Campaigns"
default="no"
reportable="no"
sortorder="2"
description="Options from the Star Trek: Discovery Campaign Guide (2256-2258)">
</source>
<source
id="DivCmd"
name="Command Division Sourcebook"
parent="Divisions"
default="no"
reportable="no"
sortorder="1"
description="Options for Command and Conn">
</source>
<source
id="DivOps"
name="Operations Division Sourcebook"
parent="Divisions"
default="no"
reportable="no"
sortorder="2"
description="Options for Engineering and Operations">
</source>
<source
id="DivSci"
name="Science Division Sourcebook"
parent="Divisions"
default="no"
reportable="no"
sortorder="3"
description="Options for Sciences and Medicine">
</source>
<source
id="QuadAlpha"
name="Alpha Quadrant Sourcebook"
parent="Quadrants"
default="no"
reportable="no"
sortorder="1"
description="Options from the Alpha Quadrant sourcebook.">
</source>
<source
id="QuadBeta"
name="Beta Quadrant Sourcebook"
parent="Quadrants"
default="no"
reportable="no"
sortorder="2"
description="Options from the Beta Quadrant sourcebook.">
</source>
<source
id="QuadGamma"
name="Gamma Quadrant Sourcebook"
parent="Quadrants"
default="no"
reportable="no"
sortorder="3"
description="Options from the Gamma Quadrant sourcebook.">
</source>
<source
id="QuadDelta"
name="Delta Quadrant Sourcebook"
parent="Quadrants"
default="no"
reportable="no"
sortorder="4"
description="Options from the Delta Quadrant sourcebook.">
</source>
<source
id="CharacterEnt"
name="Enterprise Characters"
parent="Characters"
default="no"
selectable="no"
reportable="no"
sortorder="0"
description="Options from the Enterprise Characters supplement.">
</source>
<source
id="CharacterTOS"
name="Original Series Characters"
parent="Characters"
default="no"
selectable="yes"
reportable="no"
sortorder="1"
description="Options from the TOS Characters supplement.">
</source>
<source
id="CharacterTNG"
name="Next Generations Characters"
parent="Characters"
default="no"
selectable="yes"
reportable="no"
sortorder="2"
description="Options from the TNG Characters supplement.">
</source>
<source
id="CharacterDS9"
name="Deep Space 9 Characters"
parent="Characters"
default="no"
selectable="yes"
reportable="no"
sortorder="3"
description="Options from the DS9 Characters supplement.">
</source>
<source
id="CharacterVoy"
name="Voyager Characters"
parent="Characters"
default="no"
selectable="yes"
reportable="no"
sortorder="4"
description="Options from the Voyager Characters supplement.">
</source>
<source
id="Era"
name="Campaign Era"
selectable="no"
sortorder="10"
description="Various Eras for the game.">
</source>
<source
id="ENT"
name="Enterprise"
parent="Era"
default="yes"
reportable="no"
sortorder="1"
description="Archer and Crew">
</source>
<source
id="Disco"
name="Discovery"
parent="Era"
default="yes"
reportable="no"
sortorder="2"
description="Discovery and Crew">
</source>
<source
id="TOS"
name="The Original Series"
parent="Era"
default="yes"
reportable="no"
sortorder="3"
description="Kirk and Crew">
</source>
<source
id="LostYears"
name="The Lost Years"
parent="Era"
default="yes"
reportable="no"
sortorder="4"
description="Between the Movies and TNG">
</source>
<source
id="TNG"
name="The Next Generation"
parent="Era"
default="yes"
reportable="no"
sortorder="5"
description="Picard and Crew">
</source>
<source
id="25th"
name="25th Century"
parent="Era"
default="yes"
reportable="no"
sortorder="5"
description="ST:Picard (2400+)">
</source>
<source
id="Optional"
name="Optional Rules"
selectable="no"
sortorder="5"
description="Collection of optional rules that can be turned on and off">
</source>
<source
id="StarbaseUn"
name="Starbase Construction (Unofficial)"
abbrev=""
parent="Optional"
default="no"
reportable="no"
selectable="no"
sortorder="1"
description="Unofficial rules for Starbase Construction.">
</source>
<source
id="CoreRules"
name="Core Rules"
selectable="no"
sortorder="0"
description="Which edition of the ruleset in use.">
</source>
<source
id="1stEdition"
name="1st Edition"
abbrev="1stEd"
parent="CoreRules"
default="yes"
reportable="yes"
selectable="yes"
sortorder="1"
description="Character uses the 1st edition core ruleset.">
</source>
<source
id="2ndEdition"
name="2nd Edition"
abbrev="2ndEd"
parent="CoreRules"
default="no"
reportable="yes"
selectable="yes"
sortorder="1"
description="Character uses the 2nd edition core ruleset.">
</source>
<source
id="Output"
name="Output Options"
selectable="no"
description="Assortment of options governing how character sheet output is generated">
</source>
<source
id="Validation"
name="Include Validation Report on Sheet"
abbrev="Show Validation Report"
parent="Output"
default="yes"
reportable="no"
sortorder="1"
description="Controls whether the validation report is included at the bottom of the standard character sheet">
</source>
<source
id="ShowImage"
name="Include Character Portrait on Sheet"
abbrev="Show Character Portrait"
parent="Output"
default="yes"
reportable="no"
sortorder="2"
description="If a character portrait is assigned, include it in the top right region of the character sheet">
</source>
<source
id="ShowDetail"
name="Include Personal Details on Sheet"
abbrev="Show Personal Details"
parent="Output"
default="yes"
reportable="no"
sortorder="3"
description="Controls whether the character's personal details (history) are included on the character sheet">
</source>
<source
id="ShowTrackR"
name="Include Tracked Resources on Statblock"
abbrev="Show Tracked Resources"
parent="Output"
reportable="no"
sortorder="4"
description="Controls whether any tracked resources for the character are included in the text statblock">
</source>
<!-- The "sortset" elements specify the various sort sequences to be used when
displaying or otherwise operating on lists of picks and/or things.
-->
<!-- Define the sortset used when displaying stuff on the "Special" tab. -->
<sortset
id="SpecialTab"
name="Special Tab">
<sortkey isfield="no" id="Promote"/>
<sortkey isfield="no" id="SpecialTab"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- Define the sortset used when outputting "special" picks without regard for "promote" behavior. -->
<sortset
id="SpecInfo"
name="Special Info">
<sortkey isfield="no" id="SpecialTab"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- Define a sortset for generalized handling of "promote" logic without involving the "Special" tab. -->
<sortset
id="Promote"
name="Promote to Top">
<sortkey isfield="no" id="Promote"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- Define a sortset for showing all weapons and armor appropriately, with equipped items appearing first. -->
<sortset
id="Armory"
name="Weapons and Armor">
<sortkey isfield="no" id="Equipped"/>
<sortkey isfield="no" id="Armory"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- Define a sortset that lists are equipped pieces of gear first. -->
<sortset
id="Equipped"
name="Equipped Items First">
<sortkey isfield="no" id="Equipped"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- Define a sortset that lists activated abilities, then temporary in-play adjustments. -->
<sortset
id="TacConSumm"
name="Activated abilities before temp adjustments">
<sortkey isfield="no" id="InPlay" isascend="no"/>
<sortkey isfield="yes" id="adjIndex" isascend="no"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- FocusSort - Focus sortset -->
<sortset id="FocusSort" name="Focus Sort">
<sortkey isfield="no" id="FocusCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- TraitsSort - Traits sortset -->
<sortset id="TraitSort" name="Trait Sort">
<sortkey isfield="no" id="TraitCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- TraitsSort - Traits sortset -->
<sortset id="AltTraitSort" name="Trait Sort by Heritage">
<sortkey isfield="no" id="MixedHeritage"/>
<sortkey isfield="no" id="TraitCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- TalSort - Talents sortset -->
<sortset id="TalentSort" name="Talent Sort">
<sortkey isfield="no" id="TalentCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- SpeciesSort - Species sortset -->
<sortset id="SpeciesSort" name="Species Sort">
<sortkey isfield="no" id="SpecCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- EnvironSort - Species sortset -->
<sortset id="EnvironSort" name="Environment Sort">
<sortkey isfield="yes" id="envRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- UpbringSort - Upbringing sortset -->
<sortset id="UpbringSort" name="Upbringing Sort">
<sortkey isfield="yes" id="upRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- UpbringSort - Academy sortset -->
<sortset id="AcademySort" name="Academy Sort">
<sortkey isfield="yes" id="acRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- UpbringSort - CareerPath sortset -->
<sortset id="CPathSort" name="Career Path Sort">
<sortkey isfield="yes" id="cpRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- UpbringSort - CareerPath sortset -->
<sortset id="CTrackSort" name="Career Path Sort">
<sortkey isfield="yes" id="ctRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- UpbringSort - CareerPath sortset -->
<sortset id="CExpSort" name="Career Path Sort">
<sortkey isfield="yes" id="ceRoll"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- GearSort - Gear sortset -->
<sortset id="GearByName" name="Gear By Name">
<sortkey isfield="no" id="GearCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- FrameSort - Species sortset -->
<sortset id="FrameSort" name="Starship Frame Sort">
<sortkey isfield="no" id="ShipAlliance"/>
<sortkey isfield="no" id="ShipType"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- FrameSort - Species sortset -->
<sortset id="FrameByAlliance" name="Starship Frame by Alliance">
<sortkey isfield="no" id="ShipAlliance"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- FrameSort - Species sortset -->
<sortset id="FrameByEra" name="Starship Frame by Era">
<sortkey isfield="no" id="Era"/>
<sortkey isfield="no" id="ShipAlliance"/>
<sortkey isfield="no" id="ShipType"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
<!-- FrameSort - Species sortset -->
<sortset id="ShipWeapDeliv" name="Starship Weapons Sort">
<sortkey isfield="no" id="Delivery"/>
<sortkey isfield="no" id="ShipWepCat"/>
<sortkey isfield="no" id="_Name_"/>
</sortset>
</document>