-
-
Notifications
You must be signed in to change notification settings - Fork 603
/
ImFromNASA; Talent Trees.json
4151 lines (4151 loc) · 173 KB
/
ImFromNASA; Talent Trees.json
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
{
"_meta": {
"sources": [
{
"json": "TalentTrees",
"full": "TalentTrees",
"abbreviation": "TalTrees",
"authors": [
"/u/Craios125",
"/u/ImFromNASA"
],
"convertedBy": [
"Ikaguia"
],
"url": "https://drive.google.com/file/d/1VvHtaIhUOam4VkNB_lSmn-olS_oQmIYU/view",
"version": "v1"
}
],
"dateAdded": 1575650038,
"dateLastModified": 1729630006,
"_dateLastModifiedHash": "e2e1ceea7a",
"edition": "classic"
},
"variantrule": [
{
"name": "Talent Trees",
"source": "TalentTrees",
"entries": [
"Talent trees replace the standalone {@5etools feats|feats.html} of the Player's Handbook. They build upon a character's skills, martial training, innate abilities, and areas of knowledge. They are designed to provide an organic progression of abilities and a wider range of opportunities than feats do, allowing characters to gradually build their skills and specialties in a way that feels natural.",
{
"name": "Using Talent Trees",
"type": "entries",
"entries": [
"You gain access to talent trees at character creation based on the proficiencies given by your race, background, and class. Later, as you level up, you earn opportunities for unlocking additional talents from these trees or even unlocking entirely new trees by earning and spending talent points.",
{
"name": "Kinds of Talent Trees",
"type": "entries",
"entries": [
"There are two kinds of talent trees: {@variantrule Talent Trees: Skill Trees|TalentTrees|skill trees}, which build on your skill proficiencies, and {@variantrule Talent Trees: Specialty Trees|TalentTrees|specialty trees}, which represent specialized techniques and training."
]
},
{
"name": "Gaining Talent Points",
"type": "entries",
"entries": [
"Whenever you gain an Ability Score Improvement, you can forego one or both increases to your ability scores to gain that many talent points.",
"For example, upon reaching 6th level as a fighter, you could choose to increase your Strength score by 2, or increase it by 1 and gain a talent point, or simply gain 2 talent points."
]
},
{
"name": "Spending Talent Points",
"type": "entries",
"entries": [
"You can spend talent points whenever you level up. Choose one of the following options for each talent point you spend.",
{
"type": "list",
"items": [
{
"name": "Start a Tree",
"type": "entries",
"entries": [
"You gain the base ability of a talent tree of your choice. If the tree you chose is a skill tree, you also gain proficiency with the associated skill, or if you are already proficient, you can progress again on that tree instead."
]
},
{
"name": "Progress on a Tree",
"type": "entries",
"entries": [
"You can spend a talent point to progress one level on a talent tree that you have unlocked. You can only spend points on talents that follow a path from the base of the tree towards the capstone, from top to bottom, though you can spend points along more than one path. You can't take a talent multiple times unless it explicitly allows you to do so.",
"For example, you if you have taken {@i Path C/Step 1} in the Example Tree below, you can now spend a point to gain either {@i Path A/Step 1}, or {@i Path B/Step 1}, or {@i Path C/Step 2}."
]
}
]
}
]
},
{
"type": "table",
"caption": "Example Tree",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "Base Ability"
}
],
[
"Path A, Step 1",
"Path B, Step 1",
"Path C, Step 1"
],
[
"Path A, Step 2",
"Path B, Step 2",
"Path C, Step 2"
],
[
{
"type": "cell",
"width": 3,
"entry": "Capstone Ability"
}
]
]
}
]
}
]
},
{
"name": "Talent Trees: Skill Trees",
"source": "TalentTrees",
"entries": [
{
"name": "Acrobatics",
"type": "entries",
"entries": [
"A proficiency in {@skill Acrobatics} represents deft control over your body. Whether you are sliding across a sheet of ice, balancing on a tightrope, or trying to stay upright amid the fury of the raging sea, your proficiency in acrobatics helps you stay on your toes. Continuing to improve your skill lets you learn to tumble your way through danger, evade aimed blows and reckless volleys, stride through all manner of terrain and accomplish gravity-defying feats of dexterity.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Handstring Expert|TalentTrees}"
}
],
[
"{@feat Free Stride|TalentTrees}",
"{@feat Tumble|TalentTrees}",
"{@feat Slippery|TalentTrees}"
],
[
"{@feat Withdraw|TalentTrees}",
"{@feat Agility|TalentTrees}",
"{@feat Escape Artist|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Freeruning|TalentTrees}"
}
]
]
}
]
},
{
"name": "Animal Handling",
"type": "entries",
"entries": [
"A proficiency in {@skill Animal Handling} represents a special camaraderie with, control over, and empathy for animals. Whether you're raising a puppy, riding a warhorse, or rescuing an injured eagle, both tame and wild beasts tend to respect, trust, and listen to you, and you know how to care for them. Continuing to hone your skill lets you learn to teach animals to communicate and follow your commands, masterfully control your mount in the heat of battle, and even stabilize or bolster them against harm.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Train Animal|TalentTrees}"
}
],
[
"{@feat Critter Friend|TalentTrees}",
"{@feat Mounted Combat|TalentTrees}",
"{@feat Stabilize Animal|TalentTrees}"
],
[
"{@feat Complex Training|TalentTrees}",
"{@feat One with the Rider|TalentTrees}",
"{@feat Bolster Animal|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Animal Partner|TalentTrees}"
}
]
]
}
]
},
{
"name": "Arcana",
"type": "entries",
"entries": [
"A proficiency in {@skill Arcana} represents a deep knowledge of the theory and application of different kinds of magic. Whether you are a caster yourself or simply a sage interested in the Art, whenever you attempt to understand or discern information about a magical effect, creature, item, or ritual, your proficiency in arcana gives you confidence in your assessment. Continuing to hone your skill lets you learn to cast spells and rituals, learn the deep secrets of magic items and alien creatures, and even gain an innate sense for seeing magic in the world around you.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Magical Intuition|TalentTrees}"
}
],
[
"{@feat Ritual Caster|TalentTrees}",
"{@feat Disruptive Timing|TalentTrees}",
"{@feat Secrets from Beyond|TalentTrees}"
],
[
"{@feat Ritual Collector|TalentTrees}",
"{@feat Mage Slayer|TalentTrees}",
"{@feat Planar Disruptor|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Magesight|TalentTrees}"
}
]
]
}
]
},
{
"name": "Athletics",
"type": "entries",
"entries": [
"A proficiency in {@skill Athletics} represents a purposeful application of force. Whether you are lifting, dragging, or simply holding on, your proficiency in athletics reflects your ability to apply brute force in a meaningful manner. Continuing to improve your skill lets you move quickly and deliberately, wrestling down the strongest of brutes and cleverly using inertia to your favor.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Jumper|TalentTrees}"
}
],
[
"{@feat Strapping|TalentTrees}",
"{@feat Choke-Hold|TalentTrees}",
"{@feat Brute|TalentTrees}"
],
[
"{@feat Mighty|TalentTrees}",
"{@feat Wrestler|TalentTrees}",
"{@feat Charger|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Colossus|TalentTrees}"
}
]
]
}
]
},
{
"name": "Deception",
"type": "entries",
"entries": [
"A proficiency in {@skill Deception} represents an uncanny capacity for guile, intrigue, and manipulation. Whether you are spreading rumors, raising doubts, passing yourself off as someone else, or simply attempting to keep a straight face under close scrutiny, your proficiency in deception gives you the aptitude to fool others. Continuing to hone your skill lets you master the implements of disguise, imitate others, and even fool the magic specifically designed to catch you in a lie.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Change of Heart|TalentTrees}"
}
],
[
"{@feat Parrot|TalentTrees}",
"{@feat Fake it 'til you Make it|TalentTrees}",
"{@feat Ravel the Web|TalentTrees}"
],
[
"{@feat Ventriloquist|TalentTrees}",
"{@feat Apparent Competence|TalentTrees}",
"{@feat Liar's Liar|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Heart of Treachery|TalentTrees}"
}
]
]
}
]
},
{
"name": "History",
"type": "entries",
"entries": [
"A proficiency in {@skill History} represents a a depth of scholarship and understanding cultivated over a lifetime. Whether you are identifying nobles by their family sigils, determining the origin of a ruin's builders by construction technique, or simply trying to recall the names of the nearby cities, your proficiency in history helps prepare you for the life of exploration. Continuing to hone your skill lets you identify languages, objects, and peoples at a glance, memorize reference materials verbatim, utilize war tactics and combat manuals, and ultimately ensure that the lessons of the past are not lost to those in the present.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Cultured|TalentTrees}"
}
],
[
"{@feat Repository of Lore|TalentTrees}",
"{@feat Knowledge of Society|TalentTrees}",
"{@feat Tactician|TalentTrees}"
],
[
"{@feat Linguist|TalentTrees}",
"{@feat Objects of Legend|TalentTrees}",
"{@feat Martial Adept|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Learning from History|TalentTrees}"
}
]
]
}
]
},
{
"name": "Insight",
"type": "entries",
"entries": [
"A proficiency in {@skill Insight} represents an understanding of people, their motives, and their intentions. Whether you are discerning criminal lies, interpreting body language, or simply getting the feel of the room, your proficiency in insight helps you discern what others believe and feel. Continuing to hone you skill lets you pierce even the thickest veils of deceit, foresee the magical manipulations of others, read the movements of your foes, and even aid your allies with your insight into the enemy.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Emotional Insights|TalentTrees}"
}
],
[
"{@feat Suspicious|TalentTrees}",
"{@feat Sense Enchantment|TalentTrees}",
"{@feat Sense Movement|TalentTrees}"
],
[
"{@feat Connoisseur of Lies|TalentTrees}",
"{@feat Deprogramming|TalentTrees}",
"{@feat Sentinel|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Next Move|TalentTrees}"
}
]
]
}
]
},
{
"name": "Intimidation",
"type": "entries",
"entries": [
"A proficiency in {@skill Intimidation} represents a general force of presence, and the ability to exude danger and confidence. Whether you are dressing down a subordinate, interrogating a prisoner, or diffusing a situation with only the look in your eyes, your proficiency in intimidation gets you results and it gets them fast. Continuing to hone your skill lets you refine your repertoire to include a wider range of threats, naturally exude a daunting aura, make foes flee before you in battle, and even withstand the intimidating tactics of others.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Imposing|TalentTrees}"
}
],
[
"{@feat Terrifying Presence|TalentTrees}",
"{@feat Creative Threat|TalentTrees}",
"{@feat Punisher|TalentTrees}"
],
[
"{@feat Disrupting Hostility|TalentTrees}",
"{@feat Interrogator|TalentTrees}",
"{@feat Brutal|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Fearless|TalentTrees}"
}
]
]
}
]
},
{
"name": "Investigation",
"type": "entries",
"entries": [
"A proficiency in {@skill Investigation} represents a skill for obtaining information, deciphering clues, and coming to logical conclusions. Whether you are conducting research, inspecting a crime scene, or trying to deduce the location of the secret latch into the wizard's study, your proficiency in investigation lets you glean more information than meets the eye. Continuing to hone you skill lets you hone your mind to a fine edge, consult notes to improve your performance, and even learn the weaknesses of your foes as you watch them fight.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat An Eye for Trouble|TalentTrees}"
}
],
[
"{@feat Keen Mind|TalentTrees}",
"{@feat Researcher|TalentTrees}",
"{@feat Seeker|TalentTrees}"
],
[
"{@feat Heedful|TalentTrees}",
"{@feat Memetic Memory|TalentTrees}",
"{@feat Predict Strike|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Rigor|TalentTrees}"
}
]
]
}
]
},
{
"name": "Medicine",
"type": "entries",
"entries": [
"A proficiency in {@skill Medicine} represents an understanding of the body, diseases, injuries, and the medical practices used to treat them. Whether you are bandaging wounds, performing surgery, or making a diagnosis, a proficiency in medicine lets you conduct your practice with confidence. Continuing to hone you skill lets you learn to identify and extract poisons, quickly administer aid in combat, learn the best ways to inflict injuries on your foes, and even bring back those who are well on their way to the halls of death.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Healer's Bag|TalentTrees}"
}
],
[
"{@feat Medic|TalentTrees}",
"{@feat Treat Poison|TalentTrees}",
"{@feat Remedy Injury|TalentTrees}"
],
[
"{@feat Healer|TalentTrees}",
"{@feat Poisoner|TalentTrees}",
"{@feat Treatment|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Resussitation|TalentTrees}"
}
]
]
}
]
},
{
"name": "Nature",
"type": "entries",
"entries": [
"A proficiency in {@skill Nature} represents a knowledge of the properties, uses, and behaviours of plants, animals, minerals, fungi and the natural energies present in nature. Whether you are predicting the weather, discerning the natural cycles, or simply attempting to identify something you see in the wilderness, your proficiency in nature makes the wilds a familiar place. Continuing to hone your skill lets you learn to recognize the more subtle natural dangers around you, and even turn them to your advantage.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Nature Sense|TalentTrees}"
}
],
[
"{@feat Knowledge of Monsters|TalentTrees}",
"{@feat Knowledge of Plants & Oozes|TalentTrees}",
"{@feat Knowledge of Materials|TalentTrees}"
],
[
"{@feat Monsterbane|TalentTrees}",
"{@feat Natural Defiance|TalentTrees}",
"{@feat Metalurgist|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Naturecraft|TalentTrees}"
}
]
]
}
]
},
{
"name": "Perception",
"type": "entries",
"entries": [
"A proficiency in {@skill Perception} represents a combination of natural keen senses and a practiced eye. Whether you are keeping watch, spying over a shoulder, or trying to make your way through a dark and dangerous path, your proficiency in perception lets you stay prepared for both danger and opportunity and ready to capitalize on them. Continuing to hone your skill lets you elevate your senses to peak levels, perceiving far-away details, always remaining alert to danger, and even developing specialized senses beyond what your race provides.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Keen Senses|TalentTrees}"
}
],
[
"{@feat Aware|TalentTrees}",
"{@feat Observant|TalentTrees}",
"{@feat Low-Light Vision|TalentTrees}"
],
[
"{@feat Alert|TalentTrees}",
"{@feat Focused|TalentTrees}",
"{@feat Tremortouch|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Vigilant|TalentTrees}"
}
]
]
}
]
},
{
"name": "Performance",
"type": "entries",
"entries": [
"A proficiency in {@skill Performance} represents a theatrical flair and gravitas which highlights whatever you do. Whether you are acting, playing music, speaking to a crowd, or simply trying to impress your peers with quick wit, your proficiency in performance lets you shape how others see you. Continuing to hone your skill lets you use your theatrics to distract foes, make your swordplay unpredictable, inspire others, and forever establish your fame across the world.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Entertaining|TalentTrees}"
}
],
[
"{@feat Performer|TalentTrees}",
"{@feat Theatrics|TalentTrees}",
"{@feat Orator|TalentTrees}"
],
[
"{@feat Specialty Acts|TalentTrees}",
"{@feat Stage-Fighting|TalentTrees}",
"{@feat Leadership|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Showstopper|TalentTrees}"
}
]
]
}
]
},
{
"name": "Persuasion",
"type": "entries",
"entries": [
"A proficiency in {@skill Persuasion} represents a convincing or alluring demeanor that sways the opinions of others in your favor. Whether you are arguing a case, settling a dispute, appealing to a creature's instincts, goals, or desires, or even just simply trying to get a straight answer to a question, your proficiency in persuasion allows you to use your words and wiles to skillfully articulate your position. Continuing to hone your skill lets you charm others with your eloquence, pathos, and wit.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Inspiring Word|TalentTrees}"
}
],
[
"{@feat Encouraging Word|TalentTrees}",
"{@feat Inspirational|TalentTrees}",
"{@feat Following Suit|TalentTrees}"
],
[
"{@feat Enduring Encouragement|TalentTrees}",
"{@feat Captivating|TalentTrees}",
"{@feat Leading by Example|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Silver Tongue|TalentTrees}"
}
]
]
}
]
},
{
"name": "Religion",
"type": "entries",
"entries": [
"A proficiency in {@skill Religion} represents your knowledge and studied understanding of cults, rites and holy symbols. Whether you are trying to replicate a lost ceremony, remember the lore of a dead deity and discern the leader of a religious group, your proficiency in religion allows you to learn the best approach in situations related to ruinous powers and holy powers, both much larger than any common man. Continuing to hone your skill lets you perform sacred sacraments, deepen your understanding of the occult and alien and even ascertain the nature of undeath.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Rites|TalentTrees}"
}
],
[
"{@feat Acolyte of Faith|TalentTrees}",
"{@feat Ward of Faith|TalentTrees}",
"{@feat Occultist|TalentTrees}"
],
[
"{@feat Perform Sacrament|TalentTrees}",
"{@feat Holy Aura|TalentTrees}",
"{@feat Exorcist|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Priest|TalentTrees}"
}
]
]
}
]
},
{
"name": "Sleight of Hand",
"type": "entries",
"entries": [
"A proficiency in {@skill Sleight of Hand} represents a skillful feat of legerdemain, concealing minor objects and interacting with the possessions of others. Whether you are planting core evidence on someone, tricking someone in a game of dice or simply lifting a pocket from an unsuspecting victim, your proficiency in sleight of hand guarantees that what is others' is also your own. Continuing to hone your skill lets you quickly manipulate multiple objects, nab even more hard-to-steal items and even mess up the spellcasting of others'.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Suble Interaction|TalentTrees}"
}
],
[
"{@feat Clever Action|TalentTrees}",
"{@feat Hidden Action|TalentTrees}",
"{@feat Perplexing Action|TalentTrees}"
],
[
"{@feat Thief of Order|TalentTrees}",
"{@feat Thief of Propriety|TalentTrees}",
"{@feat Thief of Focus|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Legerdemain|TalentTrees}"
}
]
]
}
]
},
{
"name": "Stealth",
"type": "entries",
"entries": [
"A proficiency in {@skill Stealth} represents an uncanny ability to slip away and remain inconspicuous under scrutiny. Whether you are trying sneak by a sleeping dragon without waking it up, stand perfectly still and stay silent while hiding, or simply disappear into a crowd, your proficiency in stealth lets you evade unwanted attention. Continuing to hone your skill lets you instantly drop out of view, ambush your enemies, and cleanly and unexpectedly disappear into the night.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Unlikely Spot|TalentTrees}"
}
],
[
"{@feat Slither|TalentTrees}",
"{@feat Skulker|TalentTrees}",
"{@feat Scamper|TalentTrees}"
],
[
"{@feat Screening|TalentTrees}",
"{@feat Ambusher|TalentTrees}",
"{@feat Dive|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Disappear|TalentTrees}"
}
]
]
}
]
},
{
"name": "Survival",
"type": "entries",
"entries": [
"A proficiency in {@skill Survival} represents your ability to stay alive in the wild, track down your foes, and make the best out of a bad situation. Whether you are trying to find a safe place to camp in a dangerous environment, tracking an animal, or noticing the signs of a creature living nearby, your proficiency in survival makes the outdoors a comfortable place. Continuing to hone your skill lets you survive in even harsher environments, fortify your position, learn to camouflage yourself in the wild and even grip onto life when others would already have passed on.",
{
"type": "table",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Pioneering|TalentTrees}"
}
],
[
"{@feat Survivalist|TalentTrees}",
"{@feat Trapper|TalentTrees}",
"{@feat Weathered Tracker|TalentTrees}"
],
[
"{@feat Foritfy|TalentTrees}",
"{@feat Dungeoneer|TalentTrees}",
"{@feat Camouflage|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Survivor|TalentTrees}"
}
]
]
}
]
}
]
},
{
"name": "Talent Trees: Specialty Trees",
"source": "TalentTrees",
"entries": [
"Where skills represent the mastery of things that anyone can do, specialties represent special techniques and training that must be explicitly trained, passed down, or discovered. Specialties vary widely from world to world and deal with tools, magics, or techniques which might not be available for every setting. Ask your DM if a specialty tree is available in your game.",
{
"name": "Specialty Trees are Special",
"type": "entries",
"entries": [
"Some specialty trees do not follow the standard eight-part format by which most other trees abide. For example, the Armor tree has four branches instead of three and the Adventuring and Weapon trees are much closer to standard feats than talent trees (one might call them \"Talent Bushes\"). Regardless of structure, the method for unlocking their talents remains the same: start at the top and work towards the bottom."
]
},
{
"name": "Adventuring",
"type": "entries",
"entries": [
"Adventuring skill represents a very broad ability to be prepared for a life away from the comfort of a home. Whether you are learning your trade, testing your luck, or earning your scars, a talent for adventuring prepares you for the long road ahead.",
"The Adventuring tree consists of three independent bushes: {@i A Friend So Nice}, {@i A Roll of the Dice}, and {@i A Little Extra Life}.",
{
"type": "table",
"caption": "A Friend So Nice",
"colStyles": [
"col-4 text-center"
],
"rows": [
[
"{@feat Loyal Servant|TalentTrees}"
],
[
"{@feat Faithfull Friend|TalentTrees}"
]
]
},
{
"type": "table",
"caption": "A Roll of the Dice",
"colStyles": [
"col-4 text-center"
],
"rows": [
[
"{@feat Favored|TalentTrees}"
],
[
"{@feat Lucky|TalentTrees}"
]
]
},
{
"type": "table",
"caption": "A Little Extra Life",
"colStyles": [
"col-4 text-center",
"col-4 text-center",
"col-4 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Endurance|TalentTrees}"
}
],
[
"{@feat Tough|TalentTrees}",
"{@feat Resilient|TalentTrees}",
"{@feat Tenacious|TalentTrees}"
],
[
{
"type": "cell",
"width": 3,
"entry": "{@feat Resistant|TalentTrees}"
}
]
]
}
]
},
{
"name": "Armor",
"type": "entries",
"entries": [
"A proficiency in armor represents your ability to effectively use it to stay alive. Whether you are strapping in or ducking out, dodging blows or simply standing firm as chaos rains upon you, a proficiency in armor is essential for keeping yourself safe as an adventurer. Continuing to hone your skill lets you learn to use and care for your armor more effectively as well as mastering unusual uses for it.",
{
"type": "table",
"colStyles": [
"col-3 text-center",
"col-3 text-center",
"col-3 text-center",
"col-3 text-center"
],
"rows": [
[
{
"type": "cell",
"width": 4,
"entry": "{@feat Armor Training|TalentTrees}"
}
],
[
"{@feat Light as a Feather|TalentTrees}",
"{@feat Shield Bash|TalentTrees}",
"{@feat Padded Plate|TalentTrees}",
"{@feat Built to Stand|TalentTrees}"
],
[
"{@feat Master of Pockets|TalentTrees}",
"{@feat Shield Master|TalentTrees}",
"{@feat Medium Armor Master|TalentTrees}",
"{@feat Heavy Armor Master|TalentTrees}"
],
[
{
"type": "cell",
"width": 2,
"entry": "{@feat Ready for Action|TalentTrees}"
},
{
"type": "cell",
"width": 2,
"entry": "{@feat Master of Protection|TalentTrees}"
}
]
]
}
]
},
{
"name": "Apprenticeship",
"type": "entries",
"entries": [
"Many great heroes begin their careers as lowly apprentices, sworn to one master or another. Perhaps you were indentured to a craftsman, a cook, a priest, a mage, or a noble lord. No matter the nature of the apprenticeship, your time working with the masters of their arts has given you a step ahead of others who might seek to follow in their footsteps.",
{
"type": "table",
"colStyles": [
"col-6 text-center",
"col-6 text-center"
],
"rows": [