-
Notifications
You must be signed in to change notification settings - Fork 0
/
GURPS Power-Ups 10 - Skill Trees.gdf
1405 lines (1273 loc) · 112 KB
/
GURPS Power-Ups 10 - Skill Trees.gdf
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Encoding=UTF-8
Version=3
* Taboo="GURPS Power-Ups 3: Talents - Alt Cost.gdf"
* Taboo="GURPS Power-Ups 3: Talents.gdf"
Incomplete=Yes
LoadAfter="GURPS Basic Set 4th Ed.--Characters.gdf"
[Author]
************************************************************************************\[START]
//
// GURPS® Character Assistant
// Filename: GURPS Power-Ups 10: Skill Trees.gdf
// Created: 2024 October 11
// Requires GCA v5 or later!
//
// This data file contains information taken from the GURPS Power-Ups 10: Skill Trees.
// GURPS Power-Ups 10: Skill Trees is Copyright © 2024
// by Steve Jackson Games Incorporated. All rights reserved.
//
// Information in this file includes:
// Skills
//
*****************************************************************************************
//
// This file compiled by Liv Tarter-de Gruyl (@effingsorceress)
//
****************************************************************************************
//
// GURPS is a registered trademark of Steve Jackson Games Incorporated, used
// with GCA by permission of Steve Jackson Games. All rights reserved.
//
// The GURPS game is Copyright © 1986, 1987, 1988, 1989, 1991, 1992, 1993,
// 1994, 1996, 1998, 1999, 2002, 2004, 2008 by Steve Jackson Games Incorporated.
// This product includes copyrighted material from the GURPS game, which is
// used by permission of Steve Jackson Games Incorporated. All rights reserved
// by Steve Jackson Games Incorporated.
//
**************************************************************************************\[STOP]
#Delete N/A
#Delete N | A
#Delete Tech/A
#Delete Tech/H
#Delete Will/WC
#Delete Will/VH
#Delete Will/H
#Delete Will/A
#Delete Will/E
#Delete HT/WC
#Delete HT/VH
#Delete HT/H
#Delete HT/A
#Delete HT/E
#Delete HT/WC
#Delete HT/VH
#Delete HT/H
#Delete HT/A
#Delete HT/E
#Delete Per/WC
#Delete Per/VH
#Delete Per/H
#Delete Per/A
#Delete Per/E
#Delete DX/WC
#Delete DX/VH
#Delete DX/H
#Delete DX/A
#Delete DX/E
#Delete IQ/WC
#Delete IQ/VH
#Delete IQ/H
#Delete IQ/A
#Delete IQ/E
#DeleteByTag Skills, Text, Name ISNOTEMPTY
#DeleteAllCats Skills
[BONUSCLASSES]
Trunks, stacks yes
AllSources, stacks yes upto 15
[SKILLTYPES]
Trunk, cost(7/14), base(0), defaultstat(10), relname()
IQ/Branch, cost(3/6), base(0), defaultstat(IQ)
DX/Branch, cost(3/6), base(0), defaultstat(DX)
HT/Branch, cost(3/6), base(0), defaultstat(HT)
Will/Branch, cost(3/6), base(0), defaultstat(Will)
Per/Branch, cost(3/6), base(0), defaultstat(Perception), relname(Per)
IQ/Twig, cost(2/4), base(0), defaultstat(IQ)
DX/Twig, cost(2/4), base(0), defaultstat(DX)
HT/Twig, cost(2/4), base(0), defaultstat(HT)
Will/Twig, cost(2/4), base(0), defaultstat(Will)
Per/Twig, cost(2/4), base(0), defaultstat(Perception), relname(Per)
IQ/Leaf, cost(1/2), base(0), defaultstat(IQ)
DX/Leaf, cost(1/2), base(0), defaultstat(DX)
HT/Leaf, cost(1/2), base(0), defaultstat(HT)
Will/Leaf, cost(1/2), base(0), defaultstat(Will)
Per/Leaf, cost(1/2), base(0), defaultstat(Perception), relname(Per)
Tech/Leaf, cost(1/2), base(0), defaultstat(%default), relname(def)
[GROUPS]
<Animal>
SK:Animal Handling
SK:Connoisseur (Horses)
SK:Connoisseur (Raptors)
SK:Falconry
SK:Mimicry (Animal Sounds)
SK:Mimicry (Bird Calls)
SK:Naturalist
SK:Packing
SK:Riding
SK:Teamster
SK:Veterinary
<Arts/Entertainment>
SK:Artist
SK:Connoisseur
SK:Current Affairs (High Culture)
SK:Current Affairs (Popular Culture)
SK:Dancing
SK:Fire Eating
SK:Group Performance
SK:Makeup
SK:Mimicry (Speech)
SK:Musical Composition
SK:Musical Instrument
SK:Performance
SK:Photography
SK:Poetry
SK:Singing
SK:Sleight of Hand
SK:Stage Combat
SK:Ventriloquism
<Athletics>
SK:Acrobatics
SK:Aerobatics
SK:Aquabatics
SK:Bicycling
SK:Body Sense
SK:Breath Control
SKCAT:Combat Art
SKCAT:Combat Sport
SKCAT:Games - Sport
SK:Climbing
SK:Combat Art
SK:Combat Sport
SK:Current Affairs (Sports)
SK:Flight
SK:Free Fall
SK:Hiking
SK:Jumping
SK:Lifting
SK:Mount
SK:Parachuting
SK:Running
SK:Scuba
SK:Skating
SK:Skiing
SK:Sports
SK:Swimming
SK:Throwing
<Bureaucracy>
SK:Administration
SK:Current Affairs (Politics)
SK:Diplomacy
SK:Economics
SK:Expert Skill (Political Science)
SK:Geography (Political)
SK:Law
SK:Politics
SK:Professional Skill (Business Administration)
SK:Public Speaking
SK:Sociology
<Business>
SK:Accounting
SK:Administration
SK:Economics
SK:Finance
SK:Market Analysis
SK:Merchant
SK:Professional Skill (Business Administration)
SK:Propaganda
SK:Current Affairs (Business)
<Clandestine Tech>
SK:Computer Hacking
SK:Counterfeiting
SK:Cryptography
SK:Forgery
SK:Electronics Operation (Communications)
SK:Electronics Operation (Electronic Warfare)
SK:Electronics Operation (Media)
SK:Electronics Operation (Security)
SK:Electronics Operation (Surveillance)
SK:Expert Skill (Computer Security)
<Crafts>
SK:Artist (Pottery)
SK:Artist (Woodworking)
SK:Carpentry
SK:Cooking
SK:Jeweler
SK:Knot-Tying
SK:Leatherworking
SK:Masonry
SK:Sewing
SK:Smith
<Deception>
SK:Acting
SK:Body Language
SK:Detect Lies
SK:Disguise
SK:Fast-Talk
SK:Mimicry
SK:Propaganda
SK:Psychology
SK:Savoir-Faire
<Esoteric>
SK:Autohypnosis
SK:Dreaming
SK:Esoteric Medicine
SK:Exorcism
SK:Expert Skill (Psionics)
SK:Fortune-Telling
SK:Meditation
SK:Mind Block
SK:Occultism
SK:Psychology (Parapsychology)
SK:Religious Ritual
SK:Ritual Magic
SK:Symbol Drawing
SK:Thaumatology
SK:Theology
<Innovation>
SK:Architecture
SK:Bioengineering
SK:Computer Programming
SK:Engineer
SK:Pharmacy
SK:Weird Science
SK:Current Affairs (Science & Technology)
<Investigation>
SK:Criminology
SK:Detect Lies
SK:Expert Skill (Conspiracy Theory)
SK:Forensics
SK:Intelligence Analysis
SK:Interrogation
SK:Observation
SK:Professional Skill (Police Officer)
SK:Search
SK:Tracking
<Medical>
SK:Diagnosis
SK:Esoteric Medicine
SK:First Aid
SK:Hypnotism
SK:Pharmacy
SK:Physician
SK:Physiology
SK:Poisons
SK:Psychology
SK:Surgery
SK:Veterinary
SK:Electronics Operation (Medical)
SK:Expert Skill (Epidemiology)
<Melee Combat>
SK:Axe/Mace
SK:Broadsword
SKCAT:Combat Art
SKCAT:Combat Sport
SK:Cloak
SK:Combat Art
SK:Combat Sport
SK:Connoisseur (Weapons)
SK:Fast-Draw (Force Sword)
SK:Fast-Draw (Knife)
SK:Fast-Draw (Sword)
SK:Fast-Draw (Two-Handed Sword)
SK:Fencing Weapons
SK:Flail
SK:Flails
SK:Force Sword
SK:Force Whip
SK:Garrote
SK:Impact Weapons
SK:Jitte/Sai
SK:Judo
SK:Karate
SK:Knife
SK:Kusari
SK:Lance
SK:Main-Gauche
SK:Monowire Whip
SK:Polearm
SK:Pole Weapons
SK:Rapier
SK:Saber
SK:Shield (Buckler)
SK:Shields
SK:Shield (Shield)
SK:Shortsword
SK:Boxing
SK:Brawling
SK:Savoir-Faire (Dojo)
SK:Smallsword
SK:Spear
SK:Staff
SK:Sumo Wrestling
SK:Swords
SK:Tonfa
SK:Two-Handed Axe/Mace
SK:Two-Handed Sword
SK:Unarmed Grappling
SK:Unarmed Striking
SK:Whip
SK:Whips
SK:Wrestling
<Military>
SK:Administration
SK:Forward Observer
SK:Heraldry
SK:Intelligence Analysis
SK:Leadership
SK:Observation
SK:Soldier
SK:Strategy
SK:Tactics
SK:Expert Skill (Military Science)
SK:Savoir-Faire (Military)
<Natural Sciences>
SK:Astronomy
SK:Biology
SK:Chemistry
SK:Current Affairs (Science & Technology)
SK:Electronics Operation (Scientific)
SK:Expert Skill (Epidemiology)
SK:Expert Skill (Hydrology)
SK:Expert Skill (Natural Philosophy)
SK:Geology
SK:Mathematics
SK:Metallurgy
SK:Meteorology
SK:Naturalist
SK:Paleontology
SK:Physics
SK:Physiology
<Outdoor/Exploration>
SK:Camouflage
SK:Cartography
SK:Fishing
SK:Hiking
SK:Mimicry (Animal Sounds)
SK:Mimicry (Bird Calls)
SK:Naturalist
SK:Navigation
SK:Prospecting
SK:Skating
SK:Skiing
SK:Survival
SK:Swimming
SK:Tracking
SK:Weather Sense
<Plant>
SK:Biology
SK:Farming
SK:Gardening
SK:Herb Lore
SK:Naturalist
SK:Pharmacy (Herbal)
SK:Weather Sense
<Ranged Combat>
SK:Artillery
SK:Beam Weapon
SK:Blowpipe
SK:Bolas
SK:Bow
SK:Crossbow
SK:Dropping
SK:Gunner
SK:Guns
SK:Innate Attack
SK:Lasso
SK:Liquid Projector
SK:Net
SK:Sling
SK:Spear Thrower
SK:Throwing
SK:Thrown Weapon
<Reconnaissance>
SK:Body Language
SK:Cartography
SK:Forward Observer
SK:Lip Reading
SK:Observation
SK:Photography
SK:Shadowing
SK:Electronics Operation (Sensors)
SK:Electronics Operation (Surveillance)
<Repair/Maintenance>
SK:Armoury
SK:Electrician
SK:Electronics Repair
SK:Machinist
SK:Mechanic
SK:Current Affairs (Science & Technology)
<Scholar>
SK:Computer Operation
SK:Literature
SK:Public Speaking
SK:Research
SK:Speed-Reading
SK:Teaching
SK:Typing
SK:Writing
SK:Connoisseur (Literature)
<Sneakiness>
SK:Camouflage
SK:Escape
SK:Holdout
SK:Shadowing
SK:Smuggling
SK:Stealth
<Social>
SK:Carousing
SK:Diplomacy
SK:Erotic Art
SK:Fast-Talk
SK:Gambling
SK:Gesture
SK:Intimidation
SK:Leadership
SK:Panhandling
SK:Public Speaking
SK:Savoir-Faire
SK:Sex Appeal
SK:Streetwise
<Social Sciences/Humanities>
SK:Anthropology
SK:Archaeology
SK:Economics
SK:Geography
SK:History
SK:Linguistics
SK:Literature
SK:Philosophy
SK:Psychology
SK:Sociology
SK:Theology
SK:Expert Skill (Egyptology)
SK:Expert Skill (Political Science)
SK:Expert Skill (Thanatology)
SK:Expert Skill (Xenology)
SK:Paleontology (Paleoanthropology)
<Theft>
SK:Filch
SK:Forced Entry
SK:Lockpicking
SK:Pickpocket
SK:Scrounging
SK:Search
SK:Sleight of Hand
SK:Traps
<Vehicles>
SK:Airshipman
SK:Battlesuit
SK:Bicycling
SK:Boating
SK:Crewman
SK:Driving
SK:Navigation
SK:Piloting
SK:Seamanship
SK:Seamanship
SK:Shiphandling
SK:Spacer
SK:Submarine
SK:Submariner
SK:Teamster
<Caution>
SK:Battlesuit
SK:Diving Suit
SK:Explosives
SK:Hazardous Materials
SK:Environmental Suit
SK:NBC Suit
SK:Poisons
SK:Traps
SK:Urban Survival
SK:Vacc Suit
<Enthrallment>
SK:Brainwashing
SK:Captivate
SK:Hypnotism
SK:Musical Influence
SK:Persuade
SK:Suggest
SK:Sway Emotions
<Ki>
SK:Blind Fighting
SK:Body Control
SK:Breaking Blow
SK:Flying Leap
SK:Immovable Stance
SK:Invisibility Art
SK:Kiai
SK:Light Walk
SK:Mental Strength
SK:Parry Missile Weapon
SK:Power Blow
SK:Pressure Points
SK:Pressure Secrets
SK:Push
SK:Throwing Art
SK:Zen Archery
<Practical>
SK:Cooking
SK:Freight Handling
SK:Housekeeping
SK:Professional Skill
SK:Savoir-Faire (Servant)
SK:Urban Survival
[SKILLS]
<Animal, Trunks>
Animal, Trunk, page(PU10:22), gives(=+ (me::step - me::extralevels) to GR:Animal class "Trunks,AllSources"), isparent(yes), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Animal, Branches>
Animal Handling, IQ/Branch, page(B175), childof(SK:Animal),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Animal Handling (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Packing, IQ/Branch, page(B212), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Riding, DX/Branch, page(B217), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Riding (#ANY EXCEPT "") class "AllSources")
Teamster, IQ/Branch, page(B225), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Teamster (#ANY EXCEPT "") class "AllSources"), cat(Vehicles)
Veterinary, IQ/Branch, page(B228), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Animal, Twigs>
Animal Handling (Big Cats), IQ/Twig, page(B175), childof(SK:Animal Handling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Animal Handling (Dogs), IQ/Twig, page(B175), childof(SK:Animal Handling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Animal Handling (Equines), IQ/Twig, page(B175),childof(SK:Animal Handling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Animal Handling (Raptors), IQ/Twig, page(B175), childof(SK:Animal Handling), gives(=+ (me::step - me::extralevels) to SK:Falconry class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Horses), IQ/Twig, page(B185), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Raptors), IQ/Twig, page(B185), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Mimicry (Animal Sounds), IQ/Twig, childof(SK:Animal), page(B210), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Deception), cat(Outdoor/Exploration)
Mimicry (Bird Calls), IQ/Twig, childof(SK:Animal), page(B210), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Deception), cat(Outdoor/Exploration)
Riding (%beast%), DX/Twig, page(B217), childof(SK:Riding), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), x(#InputReplace("You must specialize by riding beast:", %beast%, "Equines", "Riding"))
Riding (Big Cats), DX/Twig, page(B217), childof(SK:Riding), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Riding (Dogs), DX/Twig, page(B217), childof(SK:Riding), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Riding (Raptors), DX/Twig, page(B217), childof(SK:Riding), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Riding (Equines), DX/Twig, page(B217), childof(SK:Riding), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Teamster (Specialization), IQ/Twig, page(B225), x(#InputToTagReplace("You must specialize by animal type:", nameext, "Equines", "Teamster")), childof(SK:Teamster), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Vehicles)
<Animal, Leaves>
Falconry, IQ/Leaf, page(B194), childof(SK:Animal), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Arts/Entertainment, Trunks>
Arts/Entertainment, Trunk, page(PU10:22),isparent(yes), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), gives(=+ (me::step - me::extralevels) to GR:Arts/Entertainment class "Trunks, AllSources")
<Arts/Entertainment, Branches>
Artist, IQ/Branch, page(B179), isparent(yes), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Artist (#ANY EXCEPT "") class "AllSources")
Dancing, DX/Branch, page(B187), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Fire Eating, DX/Branch, page(B195), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Group Performance, IQ/Branch, needs((SK:Social | SK:Bureaucracy | SK:Diplomacy | SK:Intimidation | SK:Leadership)), page(B198), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Group Performance (#ANY EXCEPT "") class "AllSources")
Makeup, IQ/Branch, page(B206), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Musical Composition, IQ/Branch, page(B210), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Musical Instrument, IQ/Branch, page(B211), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Musical Instrument (#ANY EXCEPT "") class "AllSources")
Performance, IQ/Branch, page(B212), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Photography, IQ/Branch, page(B213), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Reconnaissance)
Poetry, IQ/Branch, page(B214), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Singing, IQ/Branch, page(B220), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Sleight of Hand, IQ/Branch, page(B221), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Theft)
Stage Combat, IQ/Branch, page(B222), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Ventriloquism, IQ/Branch, page(B228), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Arts/Entertainment, Twigs>
Artist (Body Art), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Calligraphy), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Drawing), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Illumination), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Illusion), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Interior Decorating), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Painting), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Pottery), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Crafts)
Artist (Scene Design), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Sculpting), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Artist (Woodworking), IQ/Twig, page(B179), childof(SK:Artist), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Crafts)
Connoisseur, IQ/Twig, page(B185), x(#InputToTag("Specify the required specialty:", nameext, , "Connoisseur")), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Dance), IQ/Twig, page(B185), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Literature), IQ/Twig, page(B185), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Scholar)
Connoisseur (Music), IQ/Twig, page(B185), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Visual Arts), IQ/Twig, page(B185), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Connoisseur (Wine), IQ/Twig, page(B185), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Current Affairs (High Culture), IQ/Twig, page(B186), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Current Affairs (Popular Culture), IQ/Twig, page(B186), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Group Performance (Choreography), IQ/Twig, needs((SK:Social | SK:Bureaucracy | SK:Diplomacy | SK:Intimidation | SK:Leadership), SK:Dancing), page(B198), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes)
Group Performance (Conducting), IQ/Twig, needs((SK:Social | SK:Bureaucracy | SK:Diplomacy | SK:Intimidation | SK:Leadership), SK:Musical Instrument (#ANY) | SK:Singing), page(B198), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes)
Group Performance (Directing), IQ/Twig, needs((SK:Social | SK:Bureaucracy | SK:Diplomacy | SK:Intimidation | SK:Leadership), SK:Performance), page(B198), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes)
Group Performance (Fight Choreography), IQ/Twig, needs((SK:Social | SK:Bureaucracy | SK:Diplomacy | SK:Intimidation | SK:Leadership), SK:Stage Combat), page(B198), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes)
Mimicry (Speech), IQ/Twig, page(B210), childof({SK:Arts/Entertainment}), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes),cat(Deception)
Musical Instrument (Instrument), IQ/Twig, page(B211), x(#InputToTag("You must specialize in a particular instrument:", nameext, , "Musical Instrument")),childof(SK:Musical Instrument), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Athletics, Trunks>
Athletics, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Athletics class "Trunks, AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Athletics, Branches>
Acrobatics, DX/Branch, page(B174),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Aerobatics, DX/Branch, page(B174),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Aquabatics, DX/Branch, needs(SK:Swimming | AD:Amphibious | "DI:No Legs (Aquatic)"), page(B174),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Bicycling, DX/Branch, page(B180),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Vehicles)
Body Sense, DX/Branch, page(B181),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Breath Control, HT/Branch, page(B182),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Climbing, DX/Branch, page(B183),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Combat Art, DX/Branch, page(B175), gives(=+ (me::step - me::extralevels) to SKCAT:Combat Art class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), childof(SK:Athletics)
Combat Sport, DX/Branch, page(B175), gives(=+ (me::step - me::extralevels) to SKCAT:Combat Sport class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), childof(SK:Athletics)
Flight, HT/Branch, needs(AD:Flight), page(B195),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Free Fall, DX/Branch, page(B197),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Hiking, HT/Branch, page(B200),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Outdoor/Exploration)
Jumping, DX/Branch, page(B203),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Lifting, HT/Branch, page(B205),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Mount, DX/Branch, page(B210),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Parachuting, DX/Branch, page(B212),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Running, HT/Branch, page(B218),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Scuba, IQ/Branch, page(B219),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Skating, HT/Branch, page(B220),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Outdoor/Exploration)
Skiing, HT/Branch, page(B221),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Outdoor/Exploration)
Sports, DX/Branch, page(B222), gives(=+ (me::step - me::extralevels) to (SK:Sports (#ANY EXCEPT ""), SKCAT:Games - Sport) class "AllSources" ), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), childof(SK:Athletics)
Swimming, HT/Branch, page(B224),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Outdoor/Exploration)
Throwing, DX/Branch, page(B226),childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Athletics, Twigs>
Combat Art (Skill), DX/Twig, page(B175), cat(Combat Art), parryat(@int(%level/2)+3), blockat(@int(%level/2)+3), x(#InputToTagReplace("Specify the name of the Combat skill here:", nameext)), noresync(yes), childof(SK:Combat Art), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Combat Sport (Skill), DX/Twig, page(B175), cat(Combat Sport), parryat(@int(%level/2)+3), blockat(@int(%level/2)+3), x(#InputToTagReplace("Specify the name of the Combat skill here:", nameext)), noresync(yes), childof(SK:Combat Sport), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Current Affairs (Sports), IQ/Twig, page(B186), childof(SK:Athletics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Games (Sport), IQ/Twig, page(B186), childof(SK:Athletics), cat(Games - Sport), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)) x(#InputToTagReplace("Specify the name of the sport here:", nameext)), noresync(yes), childof(SK:Sports)
Sports (Sport), DX/Twig, page(B222), x(#InputToTagReplace("Specify the name of the sport here:", "_Combat", nameext)), noresync(yes), childof(SK:Sports), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Bureaucracy, Trunks>
Bureaucracy, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Bureaucracy class "Trunks, AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Bureaucracy, Branches>
Administration, IQ/Branch, page(B174), childof(SK:Bureaucracy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Military)
Law, IQ/Branch, page(B204), childof(SK:Bureaucracy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Politics, IQ/Branch, page(B215), childof(SK:Bureaucracy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Political Science), IQ/Branch, page(B193), childof(SK:Bureaucracy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Bureaucracy, Twigs>
Law (Region), IQ/Twig, page(B204), x(#InputToTagReplace("You must specialize in the laws of a particular political region, or in a specialized body of law not associated with a political region:", nameext, "local", "Law")), childof(SK:Law), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Current Affairs (Politics), IQ/Twig, page(B186), childof(SK:Bureaucracy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Social)
<Business, Trunks>
Business, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Business class "Trunks, AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Business, Branches>
Accounting, IQ/Branch, page(B174), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Economics, IQ/Branch, page(B189), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Social Sciences/Humanities)
Finance, IQ/Branch, page(B195), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Market Analysis, IQ/Branch, page(B207), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Merchant, IQ/Branch, page(B209), conditional(=@if(me::level >= 20 then 2 else @if(me::basepoints > 0 then 1 else 0)) to ST:Reaction when "buying or selling"), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Propaganda, IQ/Branch, page(B216), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Deception)
Professional Skill (Business Administration), IQ/Branch, childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Business, Twigs>
Current Affairs (Business), IQ/Twig, page(B186), childof(SK:Business), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Clandestine Tech, Trunks>
Clandestine Tech, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Clandestine Tech class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Clandestine Tech, Branches>
Computer Hacking, IQ/Branch, page(B184), symbol(Cinematic), childof(SK:Clandestine Tech), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Counterfeiting, IQ/Branch, page(B185), childof(SK:Clandestine Tech), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Cryptography, IQ/Branch, page(B186), childof(SK:Clandestine Tech), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Forgery, IQ/Branch, page(B196), childof(SK:Clandestine Tech), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Computer Security), IQ/Branch, page(B193), childof(SK:Clandestine Tech), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Clandestine Tech, Twigs>
<Crafts, Trunks>
Crafts, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Crafts class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Crafts, Branches>
Carpentry, IQ/Branch, default(IQ - 4), page(B183), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Jeweler, IQ/Branch, page(B203), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Leatherworking, DX/Branch, page(B205), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Masonry, IQ/Branch, page(B207), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Sewing, DX/Branch, page(B219), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Smith, IQ/Branch, page(B221), isparent(yes), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), gives(=+ (me::step - me::extralevels) to SK:Smith (#ANY EXCEPT "") class "AllSources")
Cooking, IQ/Branch, page(B185), isparent(yes), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Knot-Tying, IQ/Branch, page(B203), isparent(yes), childof(SK:Crafts), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Crafts, Twigs>
Smith (Copper), IQ/Twig, page(B221), childof(SK:Smith), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Smith (Iron), IQ/Twig, page(B221), childof(SK:Smith), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Smith (Lead and Tin), IQ/Twig, page(B221), childof(SK:Smith), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Deception, Trunks>
Deception, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Deception class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Deception, Branches>
Acting, IQ/Branch, page(B174), childof(SK:Deception), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Body Language, Per/Branch, page(B181), childof(SK:Deception), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Reconnaissance)
Detect Lies, Per/Branch, page(B187), childof(SK:Deception), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Disguise, IQ/Branch, page(B187), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), gives(+= (me::step - me::extralevels) to SK:Disguise (#ALL EXCEPT "") class "AllSources"), isparent(yes)
Fast-Talk, IQ/Branch, page(B195), gives(=@if(me::level >= 20 then 2 else 0) to ST:Reaction), childof(SK:Deception), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Social)
Mimicry, IQ/Branch, childof(SK:Deception), page(B210), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), gives(+= (me::step - me::extralevels) to SK:Mimicry (#ANY EXCEPT "")), isparent(yes)
<Deception, Twigs>
Disguise (Specialization), IQ/Twig, page(B187), x(#InputToTagReplace("You must specialize by species:", nameext, "Human", "Disguise")), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Esoteric, Trunks>
Esoteric, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Esoteric class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Esoteric, Branches>
Autohypnosis, Will/Branch, page(B179), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Dreaming, Will/Branch, page(B188), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Esoteric Medicine, Per/Branch, page(B192), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric), cat(Medical)
Exorcism, Will/Branch, page(B193), conditional(=-4 to SK:Exorcism when "user doesn't possess Blessed, Power Investiture, or True Faith"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Fortune-Telling, IQ/Branch, page(B196), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Fortune-Telling (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Meditation, Will/Branch, page(B207), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Mind Block, Will/Branch, page(B210), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Occultism, IQ/Branch, page(B212), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Religious Ritual, IQ/Branch, page(B217), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Religious Ritual (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Ritual Magic, IQ/Branch, page(B218), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Ritual Magic (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Symbol Drawing, IQ/Branch, page(B224), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Symbol Drawing (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Thaumatology, IQ/Branch, page(B225), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric)
Theology, IQ/Branch, page(B226), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Theology (#ANY EXCEPT "") class "AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Esoteric), cat(Social Sciences/Humanities)
<Esoteric, Twigs>
Fortune-Telling (Specialization), IQ/Twig, page(B196), x(#InputToTagReplace("You must specialize in a particular method of Fortune-Telling:", nameext, , "Fortune-Telling")), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Astrology), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Augury), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Crystal Gazing), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Dream Interpretation), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Feng Shui), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Palmistry), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Fortune-Telling (Tarot), IQ/Twig, page(B196), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Fortune-Telling)
Religious Ritual (Specialization), IQ/Twig, page(B217), x(#InputToTagReplace("You must specialize by religion:", nameext, , "Religious Ritual")), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Religious Ritual)
Ritual Magic (Specialization), IQ/Twig, page(B218), x(#InputToTagReplace("You must specialize by tradition:", nameext)), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Ritual Magic)
Symbol Drawing (Specialization), IQ/Twig, page(B224), x(#InputToTagReplace("You must specialize in a particular magical tradition:", nameext, , "Symbol Drawing")), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Symbol Drawing)
Theology (Specialization), IQ/Twig, page(B226), x(#InputToTagReplace("You must specialize by religion:", nameext, , "Theology")), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), childof(SK:Theology)
<Innovation, Trunks>
Innovation, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Innovation class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Innovation, Branches>
Architecture, IQ/Branch, page(B176), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Bioengineering, IQ/Branch, page(B180), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Computer Programming, IQ/Branch, page(B184), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Engineer, IQ/Branch, page(B190), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Engineer (#ANY EXCEPT "") class "AllSources"), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Pharmacy, IQ/Branch, page(B213), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),cat(Medical)
Weird Science, IQ/Branch, page(B228), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Innovation, Twigs>
Bioengineering (Cloning), IQ/Twig, page(B180), childof(SK:Bioengineering), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Bioengineering (Genetic Engineering), IQ/Twig, page(B180), childof(SK:Bioengineering), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Bioengineering (Tissue Engineering), IQ/Twig, page(B180), childof(SK:Bioengineering), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Current Affairs (Science & Technology), IQ/Twig, page(B186), childof(SK:Innovation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Repair/Maintenance)
Engineer (%type%), IQ/Twig, page(B190),_
needs($if(me::tl > 4 THEN "SK:Mathematics (Applied) = 1pts")),
x(#ChoiceList(_
name(type),_
title(Engineer: Choose an Engineering Specialty),_
text(Choose an Engineering Specialty from the list of examples provided:),_
picksallowed(1),_
method(bynumber),_
list(_
"Aerospace",_
"Antimatter Reactor",_
"Artillery",_
"Autogyro",_
"Automobile",_
"Battlesuits",_
"Bicycle",_
"Body Armor",_
"Civil",_
"Clockwork",_
"Combat",_
"Construction Equipment",_
"Contragravity",_
"Diesel Engine",_
"Electrical",_
"Electronics",_
"Fission Reactor",_
"Flight Pack",_
"Force Shields",_
"Free-Flooding Sub",_
"Fuel Cell",_
"Fusion Reactor",_
"Gasoline Engine",_
"Gas Turbine",_
"Glider",_
"Halftrack Vehicle",_
"Heavy Airplane",_
"Heavy Wheeled Vehicle",_
"Helicopter",_
"High-Performance Airplane",_
"High-Performance Spacecraft",_
"Hovercraft",_
"Large Powerboat",_
"Large Sub",_
"Legged Motive System",_
"Light Airplane",_
"Lighter-Than-Air",_
"Lightsail",_
"Locomotive",_
"Low-G Wings",_
"Low-Performance Spacecraft",_
"Materials",_
"Mecha",_
"Melee Weapons",_
"Microtechnology",_
"Mining",_
"Mini-Sub",_
"Missile Weapons",_
"Motorboat",_
"Nanotechnology",_
"Parachronic",_
"Psychotronic",_
"Reactionless Thrusters",_
"Robotics",_
"Rockets",_
"Sailboat",_
"Small Arms",_
"Steam Engine",_
"Temporal",_
"Tracked Motive System",_
"Tracked Vehicle",_
"Ultralight Airplane",_
"Unpowered Boat",_
"Vehicular Armor",_
"Vertol",_
"Wheeled Motive System" _
)_
)_
), noresync(yes), childof(SK:Engineer), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Pharmacy (Herbal), IQ/Twig, page(B213), childof(SK:Pharmacy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Medical, Plant)
Pharmacy (Synthetic), IQ/Twig, page(B213), childof(SK:Pharmacy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Medical)
<Investigation, Trunks>
Investigation, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Investigation class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Investigation, Branches>
Criminology, IQ/Branch, page(B186), childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Forensics, IQ/Branch, page(B196), childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Search, Per/Branch, page(B219), childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Theft)
Interrogation, IQ/Branch, page(B202), childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Conspiracy Theory), IQ/Branch, childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Professional Skill (Police Officer), IQ/Branch, childof(SK:Investigation), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Investigation, Twigs>
<Medical, Trunks>
Medical, Trunk, page(PU10:22), isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Medical class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Medical, Branches>
Diagnosis, IQ/Branch, page(B187), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
First Aid, IQ/Branch, page(B195), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Hypnotism, IQ/Branch, page(B201), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Enthrallment)
Physician, IQ/Branch, page(B213), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Physiology, IQ/Branch, page(B213), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), gives(=+ (me::step - me::extralevels) to SK:Physiology (#ANY EXCEPT "") class "AllSources"), cat(Natural Sciences)
Poisons, IQ/Branch, page(B214), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Surgery, IQ/Branch, page(B223), childof(SK:Medical), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Epidemiology), IQ/Branch, childof(SK:Medical), page(B195), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Natural Sciences)
<Medical, Twigs>
Electronics Operation (Medical), IQ/Twig, childof(SK:Medical), page(B195), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Physiology (Specialization), IQ/Twig, page(B213), childof(SK:Physiology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), x(#InputToTagReplace("You must specialize by species:", nameext, "Human", "Disguise")), cat(Natural Sciences)
<Melee Combat, Trunks>
Melee Combat, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Melee Combat class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Melee Combat, Branches>
Fencing Weapons, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Main-Gauche, SK:Rapier, SK:Saber, SK:Smallsword, SK:Fast-Draw (Sword), SK:Fast-Draw (Knife)) class "AllSources"), isparent(yes)
Flails, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Flail, SK:Two-Handed Flail) class "AllSources"), isparent(yes)
Garrote, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B197)
Impact Weapons, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Axe/Mace, SK:Two-Handed Axe/Mace) class "AllSources"), isparent(yes)
Pole Weapons, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Polearm, SK:Spear, SK:Staff, SK:Lance) class "AllSources"), isparent(yes)
Shields, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B220), gives(=+ (me::step - me::extralevels) to (SK:Shield (#ANY), SK:Cloak) class "AllSources"), isparent(yes)
Swords, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Broadsword, SK:Two-Handed Sword, SK:Force Sword, SK:Jitte/Sai, SK:Knife, SK:Shortsword, SK:Fast-Draw (Sword), SK:Fast-Draw (Knife), SK:Fast-Draw (Two-Handed Sword)) class "AllSources"), isparent(yes)
Tonfa, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Unarmed Grappling, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(PU10:21), isparent(yes), gives(=+ (me::step - me::extralevels) to (SK:Wrestling, SK:Judo, SK:Sumo Wrestling) class "All Sources")
Unarmed Striking, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(PU10:21), isparent(yes), gives(=+ (me::step - me::extralevels) to (SK:Brawling, SK:Karate, SK:Boxing) class "All Sources")
Whips, DX/Branch, childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208), gives(=+ (me::step - me::extralevels) to (SK:Kusari, SK:Whip, SK:Force Whip, SK:Monowire Whip) class "AllSources"), isparent(yes)
<Melee Combat, Twigs>
Axe/Mace, DX/Twig, childof(SK:Impact Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Boxing, DX/Twig, childof(SK:Unarmed Striking), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B182)
Brawling, DX/Twig, childof(SK:Unarmed Striking), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B182)
Broadsword, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Cloak, DX/Twig, childof(SK:Shields), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B184)
Connoisseur (Weapons), DX/Twig, childof(SK:Melee Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B185)
Fast-Draw (Force Sword), DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B194)
Fast-Draw (Knife), DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B194)
Fast-Draw (Sword), DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B194)
Fast-Draw (Two-Handed Sword), DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B194)
Flail, DX/Twig, childof(SK:Flails), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Force Sword, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Force Whip, DX/Twig, childof(SK:Whips), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Jitte/Sai, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Judo, DX/Twig, childof(SK:Unarmed Grappling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B203)
Karate, DX/Twig, childof(SK:Unarmed Striking), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B203)
Knife, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Kusari, DX/Twig, childof(SK:Flails), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Lance, DX/Twig, childof(SK:Pole Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B204)
Main-Gauche, DX/Twig, childof(SK:Fencing Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Monowire Whip, DX/Twig, childof(SK:Whips), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Polearm, DX/Twig, childof(SK:Pole Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Rapier, DX/Twig, childof(SK:Fencing Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Saber, DX/Twig, childof(SK:Fencing Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Shield (Buckler), DX/Twig, childof(SK:Shields), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B220)
Shield (Shield), DX/Twig, childof(SK:Shields), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B220)
Shortsword, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Smallsword, DX/Twig, childof(SK:Fencing Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Spear, DX/Twig, childof(SK:Pole Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Staff, DX/Twig, childof(SK:Pole Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Sumo Wrestling, DX/Twig, childof(SK:Unarmed Grappling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B223)
Two-Handed Axe/Mace, DX/Twig, childof(SK:Impact Weapons), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B208)
Two-Handed Sword, DX/Twig, childof(SK:Swords), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Whip, DX/Twig, childof(SK:Whips), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B209)
Wrestling, DX/Twig, childof(SK:Unarmed Grappling), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), page(B228)
Savoir-Faire (Dojo), IQ/Twig, page(B218), childof(SK:Melee Combat), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Military, Trunks>
Military, Trunk, page(PU10:22),isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Military class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Military, Branches>
Heraldry, IQ/Branch, page(B199), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Intelligence Analysis, IQ/Branch, page(B201), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Investigation)
Soldier, IQ/Branch, page(B221), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy, IQ/Branch, page(B222), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Strategy (#ANY EXCEPT "") class "AllSources")
Tactics, IQ/Branch, page(B224), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Military Science), IQ/Branch, page(B193), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Military, Twigs>
Savoir-Faire (Military), IQ/Twig, page(B218), childof(SK:Military), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy (Air), IQ/Twig, page(B222), childof(SK:Strategy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy (Interstellar), IQ/Twig, page(B222), childof(SK:Strategy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy (Land), IQ/Twig, page(B222), childof(SK:Strategy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy (Naval), IQ/Twig, page(B222), childof(SK:Strategy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Strategy (Space), IQ/Twig, page(B222), childof(SK:Strategy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Natural Sciences, Trunks>
Natural Sciences, Trunk, page(PU10:23), isparent(yes), gives(=+ (me::step - me::extralevels) to GR:Natural Sciences class "Trunks,AllSources"), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Natural Sciences, Branches>
Astronomy, IQ/Branch, page(B179), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Astronomy (#ANY EXCEPT "") class "AllSources"), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology, IQ/Branch, page(B180), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Biology (#ANY EXCEPT "") class "AllSources"), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Plant)
Chemistry, IQ/Branch, page(B183), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Hydrology), IQ/Branch, page(B193), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Expert Skill (Natural Philosophy), IQ/Branch, page(B193), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology, IQ/Branch, page(B198), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Geology (#ANY EXCEPT "") class "AllSources")
Mathematics, IQ/Branch, page(B207), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Mathematics (#ANY EXCEPT "") class "AllSources")
Metallurgy, IQ/Branch, page(B209), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Meteorology, IQ/Branch, page(B209), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Meteorology (#ANY EXCEPT "") class "AllSources")
Naturalist, IQ/Branch, page(211), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)),cat(Animal,Outdoor/Exploration,Plant)
Paleontology, IQ/Branch, page(B212), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), isparent(yes), gives(=+ (me::step - me::extralevels) to SK:Paleontology (#ANY EXCEPT "") class "AllSources")
Physics, IQ/Branch, needs($if(me::tl > 4 THEN "SK:Mathematics (Applied) = 1pts")), page(B213), childof(SK:Natural Sciences), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
<Natural Sciences, Twigs>
Astronomy (Observational), IQ/Twig, page(B179), childof(SK:Astronomy), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology (Earthlike), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels)), cat(Plant)
Biology (Gas Giants), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology (Hostile Terrestrial), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology (Ice Dwarfs), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology (Ice Worlds), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Biology (Rock Worlds), IQ/Twig, page(B180), childof(SK:Biology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Earthlike), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Gas Giants), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Hostile Terrestrial), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Ice Dwarfs), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Ice Worlds), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Geology (Rock Worlds), IQ/Twig, page(B198), childof(SK:Geology), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Mathematics (Applied), IQ/Twig, page(B207), childof(SK:Mathematics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))
Mathematics (Computer Science), IQ/Twig, page(B207), childof(SK:Mathematics), displaynameformula($val(me::fullname): +$eval(me::step - me::extralevels))