-
Notifications
You must be signed in to change notification settings - Fork 0
/
Venificus__CharData.CDF
8308 lines (8308 loc) · 456 KB
/
Venificus__CharData.CDF
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
[
{
"actions": {
"class": [
{
"abilityModifierStatId": null,
"actionType": 3,
"activation": {
"activationTime": null,
"activationType": 8
},
"attackCustomData": {
"cost": null,
"damageBonus": null,
"displayAsAttack": null,
"isAdamantine": null,
"isOffhand": null,
"isProficient": null,
"isSilver": null,
"name": null,
"notes": null,
"saveDc": null,
"saveDcBonus": null,
"toHit": null,
"toHitBonus": null,
"weight": null
},
"attackSubtype": null,
"attackTypeRange": null,
"componentId": 411,
"componentTypeId": 12168134,
"damageTypeId": null,
"description": "",
"dice": null,
"displayAsAttack": null,
"entityTypeId": 222216831,
"fixedSaveDc": null,
"id": 1041,
"isMartialArts": false,
"isProficient": false,
"limitedUse": {
"maxNumberConsumed": 1,
"maxUses": 1,
"minNumberConsumed": 1,
"name": null,
"numberUsed": 0,
"resetType": 2,
"statModifierUsesId": null
},
"name": "Arcane Recovery",
"onMissDescription": "",
"range": {
"aoeSize": null,
"aoeType": null,
"hasAoeSpecialDescription": false,
"longRange": null,
"range": null
},
"saveFailDescription": "",
"saveStatId": null,
"saveSuccessDescription": "",
"snippet": "Once per day when you finish a short rest, you can choose expended spell slots to recover - up to a combined level of {{(classlevel/2)@roundup}}, and none of the slots can be 6th level or higher.",
"spellRangeType": null,
"value": null
},
{
"abilityModifierStatId": null,
"actionType": 3,
"activation": {
"activationTime": null,
"activationType": 8
},
"attackCustomData": {
"cost": null,
"damageBonus": null,
"displayAsAttack": null,
"isAdamantine": null,
"isOffhand": null,
"isProficient": null,
"isSilver": null,
"name": null,
"notes": null,
"saveDc": null,
"saveDcBonus": null,
"toHit": null,
"toHitBonus": null,
"weight": null
},
"attackSubtype": null,
"attackTypeRange": null,
"componentId": 446,
"componentTypeId": 12168134,
"damageTypeId": null,
"description": null,
"dice": null,
"displayAsAttack": null,
"entityTypeId": 222216831,
"fixedSaveDc": null,
"id": 53422,
"isMartialArts": false,
"isProficient": false,
"limitedUse": null,
"name": "Grim Harvest",
"onMissDescription": null,
"range": {
"aoeSize": null,
"aoeType": null,
"hasAoeSpecialDescription": false,
"longRange": null,
"range": null
},
"saveFailDescription": null,
"saveStatId": null,
"saveSuccessDescription": null,
"snippet": "Once per turn when you kill one or more creatures with a spell of 1st level or higher, you regain HP equal to twice the spell\u2019s level, or three times its level if the spell belongs to the School of Necromancy. You don\u2019t gain this benefit for killing constructs or undead.",
"spellRangeType": null,
"value": null
},
{
"abilityModifierStatId": null,
"actionType": 3,
"activation": {
"activationTime": null,
"activationType": 8
},
"attackCustomData": {
"cost": null,
"damageBonus": null,
"displayAsAttack": null,
"isAdamantine": null,
"isOffhand": null,
"isProficient": null,
"isSilver": null,
"name": null,
"notes": null,
"saveDc": null,
"saveDcBonus": null,
"toHit": null,
"toHitBonus": null,
"weight": null
},
"attackSubtype": null,
"attackTypeRange": null,
"componentId": 447,
"componentTypeId": 12168134,
"damageTypeId": null,
"description": null,
"dice": null,
"displayAsAttack": null,
"entityTypeId": 222216831,
"fixedSaveDc": null,
"id": 53423,
"isMartialArts": false,
"isProficient": false,
"limitedUse": null,
"name": "Undead Thralls",
"onMissDescription": null,
"range": {
"aoeSize": null,
"aoeType": null,
"hasAoeSpecialDescription": false,
"longRange": null,
"range": null
},
"saveFailDescription": null,
"saveStatId": null,
"saveSuccessDescription": null,
"snippet": "You add the animate dead spell to your spellbook if it is not there already. When you cast animate dead, you can target one additional corpse or pile of bones, creating another zombie or skeleton, as appropriate. Whenever you create an undead using a necromancy spell, its max HP is increased by {{classlevel}} and it adds your proficiency bonus to its weapon damage rolls.",
"spellRangeType": null,
"value": null
}
],
"feat": [],
"race": []
},
"activeSourceCategories": [
1,
7,
8
],
"adjustmentXp": null,
"age": null,
"alignmentId": 6,
"avatarId": null,
"avatarUrl": "",
"backdropAvatarId": null,
"backdropAvatarUrl": "",
"background": {
"customBackground": {
"backgroundType": null,
"characteristicsBackground": null,
"description": null,
"entityTypeId": 1581111423,
"featuresBackground": null,
"id": 2113653,
"name": null
},
"definition": {
"avatarUrl": null,
"bonds": [
{
"description": "It is my duty to protect my students.",
"diceRoll": 1,
"id": 161
},
{
"description": "I have an ancient text that holds terrible secrets that must not fall into the wrong hands.",
"diceRoll": 2,
"id": 162
},
{
"description": "I work to preserve a library, university, scriptorium, or monastery.",
"diceRoll": 3,
"id": 163
},
{
"description": "My life\u2019s work is a series of tomes related to a specific field of lore.",
"diceRoll": 4,
"id": 164
},
{
"description": "I\u2019ve been searching my whole life for the answer to a certain question.",
"diceRoll": 5,
"id": 165
},
{
"description": "I sold my soul for knowledge. I hope to do great deeds and win it back.",
"diceRoll": 6,
"id": 166
}
],
"contractsDescription": null,
"description": "<p>You spent years learning the lore of the multiverse. You scoured manuscripts, studied scrolls, and listened to the greatest experts on the subjects that interest you. Your efforts have made you a master in your fields of study.</p>\r\n<div class=\"line character margintop20 marginbottom20\"> </div>\r\n<dl>\r\n<dt><strong>Skill Proficiencies:</strong> Arcana, History</dt>\r\n<dt><strong>Languages:</strong> Two of your choice</dt>\r\n<dt><strong>Equipment:</strong> A bottle of black ink, a quill, a small knife, a letter from a dead colleague posing a question you have not yet been able to answer, a set of common clothes, and a pouch containing 10 gp</dt>\r\n</dl>\r\n<div class=\"line character margintop20 marginbottom20\"> </div>\r\n<h5>Specialty</h5>\r\n<p>To determine the nature of your scholarly training, roll a d8 or choose from the options in the table below.</p>\r\n<table class=\"compendium-left-aligned-table\">\r\n<thead>\r\n<tr>\r\n<th>d8</th>\r\n<th style=\"text-align:left\">Specialty</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1</td>\r\n<td>Alchemist</td>\r\n</tr>\r\n<tr>\r\n<td>2</td>\r\n<td>Astronomer</td>\r\n</tr>\r\n<tr>\r\n<td>3</td>\r\n<td>Discredited academic</td>\r\n</tr>\r\n<tr>\r\n<td>4</td>\r\n<td>Librarian</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>Professor</td>\r\n</tr>\r\n<tr>\r\n<td>6</td>\r\n<td>Researcher</td>\r\n</tr>\r\n<tr>\r\n<td>7</td>\r\n<td>Wizard’s apprentice</td>\r\n</tr>\r\n<tr>\r\n<td>8</td>\r\n<td>Scribe</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<blockquote>\r\n<p><strong>FEATURE: RESEARCHER</strong></p>\r\n<p>When you attempt to learn or recall a piece of lore, if you do not know that information, you often know where and from whom you can obtain it. Usually, this information comes from a library, scriptorium, university, or a sage or other learned person or creature. Your DM might rule that the knowledge you seek is secreted away in an almost inaccessible place, or that it simply cannot be found. Unearthing the deepest secrets of the multiverse can require an adventure or even a whole campaign.</p>\r\n</blockquote>\r\n<div class=\"line character margintop20 marginbottom20\"> </div>\r\n<h5>Suggested Characteristics</h5>\r\n<p>Sages are defined by their extensive studies, and their characteristics reflect this life of study. Devoted to scholarly pursuits, a sage values knowledge highly—sometimes in its own right, sometimes as a means toward other ideals.</p>\r\n<table class=\"compendium-left-aligned-table\">\r\n<thead>\r\n<tr>\r\n<th>d8</th>\r\n<th style=\"text-align:left\">Personality Trait</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1</td>\r\n<td>I use polysyllabic words that convey the impression of great erudition.</td>\r\n</tr>\r\n<tr>\r\n<td>2</td>\r\n<td>I’ve read every book in the world’s greatest libraries—or I like to boast that I have.</td>\r\n</tr>\r\n<tr>\r\n<td>3</td>\r\n<td>I’m used to helping out those who aren’t as smart as I am, and I patiently explain anything and everything to others.</td>\r\n</tr>\r\n<tr>\r\n<td>4</td>\r\n<td>There’s nothing I like more than a good mystery.</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>I’m willing to listen to every side of an argument before I make my own judgment.</td>\r\n</tr>\r\n<tr>\r\n<td>6</td>\r\n<td>I … speak … slowly … when talking … to idiots, … which … almost … everyone … is … compared … to me.</td>\r\n</tr>\r\n<tr>\r\n<td>7</td>\r\n<td>I am horribly, horribly awkward in social situations.</td>\r\n</tr>\r\n<tr>\r\n<td>8</td>\r\n<td>I’m convinced that people are always trying to steal my secrets.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"compendium-left-aligned-table\">\r\n<thead>\r\n<tr>\r\n<th>d6</th>\r\n<th style=\"text-align:left\">Ideal</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1</td>\r\n<td><strong>Knowledge.</strong> The path to power and self-improvement is through knowledge. (Neutral)</td>\r\n</tr>\r\n<tr>\r\n<td>2</td>\r\n<td><strong>Beauty.</strong> What is beautiful points us beyond itself toward what is true. (Good)</td>\r\n</tr>\r\n<tr>\r\n<td>3</td>\r\n<td><strong>Logic.</strong> Emotions must not cloud our logical thinking. (Lawful)</td>\r\n</tr>\r\n<tr>\r\n<td>4</td>\r\n<td><strong>No Limits.</strong> Nothing should fetter the infinite possibility inherent in all existence. (Chaotic)</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td><strong>Power.</strong> Knowledge is the path to power and domination. (Evil)</td>\r\n</tr>\r\n<tr>\r\n<td>6</td>\r\n<td><strong>Self-Improvement.</strong> The goal of a life of study is the betterment of oneself. (Any)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"compendium-left-aligned-table\">\r\n<thead>\r\n<tr>\r\n<th>d6</th>\r\n<th style=\"text-align:left\">Bond</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1</td>\r\n<td>It is my duty to protect my students.</td>\r\n</tr>\r\n<tr>\r\n<td>2</td>\r\n<td>I have an ancient text that holds terrible secrets that must not fall into the wrong hands.</td>\r\n</tr>\r\n<tr>\r\n<td>3</td>\r\n<td>I work to preserve a library, university, scriptorium, or monastery.</td>\r\n</tr>\r\n<tr>\r\n<td>4</td>\r\n<td>My life’s work is a series of tomes related to a specific field of lore.</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>I’ve been searching my whole life for the answer to a certain question.</td>\r\n</tr>\r\n<tr>\r\n<td>6</td>\r\n<td>I sold my soul for knowledge. I hope to do great deeds and win it back.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"compendium-left-aligned-table\">\r\n<thead>\r\n<tr>\r\n<th>d6</th>\r\n<th style=\"text-align:left\">Flaw</th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td>1</td>\r\n<td>I am easily distracted by the promise of information.</td>\r\n</tr>\r\n<tr>\r\n<td>2</td>\r\n<td>Most people scream and run when they see a demon. I stop and take notes on its anatomy.</td>\r\n</tr>\r\n<tr>\r\n<td>3</td>\r\n<td>Unlocking an ancient mystery is worth the price of a civilization.</td>\r\n</tr>\r\n<tr>\r\n<td>4</td>\r\n<td>I overlook obvious solutions in favor of complicated ones.</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>I speak without really thinking through my words, invariably insulting others.</td>\r\n</tr>\r\n<tr>\r\n<td>6</td>\r\n<td>I can’t keep a secret to save my life, or anyone else’s.</td>\r\n</tr>\r\n</tbody>\r\n</table>",
"entityTypeId": 1669830167,
"equipmentDescription": "A bottle of black ink, a quill, a small knife, a letter from a dead colleague posing a question you have not yet been able to answer, a set of common clothes, and a pouch containing 10 gp",
"featureDescription": "<p>When you attempt to learn or recall a piece of lore, if you do not know that information, you often know where and from whom you can obtain it. Usually, this information comes from a library, scriptorium, university, or a sage or other learned person or creature. Your DM might rule that the knowledge you seek is secreted away in an almost inaccessible place, or that it simply cannot be found. Unearthing the deepest secrets of the multiverse can require an adventure or even a whole campaign.</p>",
"featureName": "Researcher",
"flaws": [
{
"description": "I am easily distracted by the promise of information.",
"diceRoll": 1,
"id": 167
},
{
"description": "Most people scream and run when they see a demon. I stop and take notes on its anatomy.",
"diceRoll": 2,
"id": 168
},
{
"description": "Unlocking an ancient mystery is worth the price of a civilization.",
"diceRoll": 3,
"id": 169
},
{
"description": "I overlook obvious solutions in favor of complicated ones.",
"diceRoll": 4,
"id": 170
},
{
"description": "I speak without really thinking through my words, invariably insulting others.",
"diceRoll": 5,
"id": 171
},
{
"description": "I can\u2019t keep a secret to save my life, or anyone else\u2019s.",
"diceRoll": 6,
"id": 172
}
],
"id": 11,
"ideals": [
{
"description": "Knowledge. The path to power and self-improvement is through knowledge. (Neutral)",
"diceRoll": 1,
"id": 155
},
{
"description": "Beauty. What is beautiful points us beyond itself toward what is true. (Good)",
"diceRoll": 2,
"id": 156
},
{
"description": "Logic. Emotions must not cloud our logical thinking. (Lawful)",
"diceRoll": 3,
"id": 157
},
{
"description": "No Limits. Nothing should fetter the infinite possibility inherent in all existence. (Chaotic)",
"diceRoll": 4,
"id": 158
},
{
"description": "Power. Knowledge is the path to power and domination. (Evil)",
"diceRoll": 5,
"id": 159
},
{
"description": "Self-Improvement. The goal of a life of study is the betterment of oneself. (Any)",
"diceRoll": 6,
"id": 160
}
],
"languagesDescription": "Two of your choice",
"largeAvatarUrl": null,
"name": "Sage",
"organization": null,
"personalityTraits": [
{
"description": "I use polysyllabic words that convey the impression of great erudition.",
"diceRoll": 1,
"id": 147
},
{
"description": "I\u2019ve read every book in the world\u2019s greatest libraries\u2014or I like to boast that I have.",
"diceRoll": 2,
"id": 148
},
{
"description": "I\u2019m used to helping out those who aren\u2019t as smart as I am, and I patiently explain anything and everything to others.",
"diceRoll": 3,
"id": 149
},
{
"description": "There\u2019s nothing I like more than a good mystery.",
"diceRoll": 4,
"id": 150
},
{
"description": "I\u2019m willing to listen to every side of an argument before I make my own judgment.",
"diceRoll": 5,
"id": 151
},
{
"description": "I \u2026 speak \u2026 slowly \u2026 when talking \u2026 to idiots, \u2026 which \u2026 almost \u2026 everyone \u2026 is \u2026 compared \u2026 to me.",
"diceRoll": 6,
"id": 152
},
{
"description": "I am horribly, horribly awkward in social situations.",
"diceRoll": 7,
"id": 153
},
{
"description": "I\u2019m convinced that people are always trying to steal my secrets.",
"diceRoll": 8,
"id": 154
}
],
"shortDescription": "<p>You spent years learning the lore of the multiverse. You scoured manuscripts, studied scrolls, and listened to the greatest experts on the subjects that interest you. Your efforts have made you a master in your fields of study.</p>",
"skillProficienciesDescription": "Arcana, History",
"snippet": "",
"spellsPostDescription": null,
"spellsPreDescription": null,
"suggestedCharacteristicsDescription": "<p>Sages are defined by their extensive studies, and their characteristics reflect this life of study. Devoted to scholarly pursuits, a sage values knowledge highly—sometimes in its own right, sometimes as a means toward other ideals.</p>",
"suggestedLanguages": [],
"suggestedProficiencies": [
"Arcana",
"History"
],
"toolProficienciesDescription": ""
},
"hasCustomBackground": false
},
"baseHitPoints": 30,
"bonusHitPoints": null,
"bonusStats": [
{
"id": 1,
"name": null,
"value": null
},
{
"id": 2,
"name": null,
"value": null
},
{
"id": 3,
"name": null,
"value": null
},
{
"id": 4,
"name": null,
"value": null
},
{
"id": 5,
"name": null,
"value": null
},
{
"id": 6,
"name": null,
"value": null
}
],
"campaign": {
"characters": [
{
"avatarUrl": "",
"characterId": 2113076,
"characterName": "PB'n'Die",
"characterUrl": "/profile/Ramidoda/characters/2113076",
"privacyType": 3,
"userId": 100723544,
"username": "Ramidoda"
},
{
"avatarUrl": "",
"characterId": 2113653,
"characterName": "Venificus",
"characterUrl": "/profile/Venificus/characters/2113653",
"privacyType": 3,
"userId": 100728962,
"username": "Venificus"
},
{
"avatarUrl": "",
"characterId": 2113780,
"characterName": "Eridan ",
"characterUrl": "/profile/KaiserGeyser/characters/2113780",
"privacyType": 3,
"userId": 100714582,
"username": "KaiserGeyser"
},
{
"avatarUrl": "https://media-waterdeep.cursecdn.com/avatars/thumbnails/17/921/150/150/636378851716447403.jpeg",
"characterId": 3819619,
"characterName": "Xacoo",
"characterUrl": "/profile/GilberticusGC/characters/3819619",
"privacyType": 3,
"userId": 100188566,
"username": "GilberticusGC"
}
],
"description": "",
"dmUserId": 100114829,
"dmUsername": "stageselectshow",
"link": "/campaigns/78855",
"name": "RT",
"publicNotes": ""
},
"characterValues": [
{
"contextId": null,
"contextTypeId": null,
"notes": "cloak",
"typeId": 1,
"value": 14,
"valueId": null,
"valueTypeId": null
}
],
"choices": {
"background": [
{
"componentId": 11,
"componentTypeId": 1669830167,
"defaultSubtypes": [],
"id": "2-2111",
"isInfinite": false,
"isOptional": false,
"label": "Choose a Language",
"optionValue": 4045,
"options": [
{
"description": null,
"id": 4045,
"label": "Abyssal"
},
{
"description": null,
"id": 4049,
"label": "Celestial"
},
{
"description": null,
"id": 4050,
"label": "Common"
},
{
"description": null,
"id": 4051,
"label": "Deep Speech"
},
{
"description": null,
"id": 4052,
"label": "Draconic"
},
{
"description": null,
"id": 4054,
"label": "Dwarvish"
},
{
"description": null,
"id": 4055,
"label": "Elvish"
},
{
"description": null,
"id": 4056,
"label": "Giant"
},
{
"description": null,
"id": 5064,
"label": "Gith"
},
{
"description": null,
"id": 4061,
"label": "Gnomish"
},
{
"description": null,
"id": 4062,
"label": "Goblin"
},
{
"description": null,
"id": 4063,
"label": "Halfling"
},
{
"description": null,
"id": 4065,
"label": "Infernal"
},
{
"description": null,
"id": 5110,
"label": "Kraul"
},
{
"description": null,
"id": 5109,
"label": "Loxodon"
},
{
"description": null,
"id": 5108,
"label": "Minotaur"
},
{
"description": null,
"id": 4066,
"label": "Orc"
},
{
"description": null,
"id": 4068,
"label": "Primordial"
},
{
"description": null,
"id": 4071,
"label": "Sylvan"
},
{
"description": null,
"id": 4074,
"label": "Undercommon"
},
{
"description": null,
"id": 5111,
"label": "Vedalken"
}
],
"parentChoiceId": null,
"subType": 3,
"type": 2
},
{
"componentId": 11,
"componentTypeId": 1669830167,
"defaultSubtypes": [],
"id": "2-2112",
"isInfinite": false,
"isOptional": false,
"label": "Choose a Language",
"optionValue": 4074,
"options": [
{
"description": null,
"id": 4045,
"label": "Abyssal"
},
{
"description": null,
"id": 4049,
"label": "Celestial"
},
{
"description": null,
"id": 4050,
"label": "Common"
},
{
"description": null,
"id": 4051,
"label": "Deep Speech"
},
{
"description": null,
"id": 4052,
"label": "Draconic"
},
{
"description": null,
"id": 4054,
"label": "Dwarvish"
},
{
"description": null,
"id": 4055,
"label": "Elvish"
},
{
"description": null,
"id": 4056,
"label": "Giant"
},
{
"description": null,
"id": 5064,
"label": "Gith"
},
{
"description": null,
"id": 4061,
"label": "Gnomish"
},
{
"description": null,
"id": 4062,
"label": "Goblin"
},
{
"description": null,
"id": 4063,
"label": "Halfling"
},
{
"description": null,
"id": 4065,
"label": "Infernal"
},
{
"description": null,
"id": 5110,
"label": "Kraul"
},
{
"description": null,
"id": 5109,
"label": "Loxodon"
},
{
"description": null,
"id": 5108,
"label": "Minotaur"
},
{
"description": null,
"id": 4066,
"label": "Orc"
},
{
"description": null,
"id": 4068,
"label": "Primordial"
},
{
"description": null,
"id": 4071,
"label": "Sylvan"
},
{
"description": null,
"id": 4074,
"label": "Undercommon"
},
{
"description": null,
"id": 5111,
"label": "Vedalken"
}
],
"parentChoiceId": null,
"subType": 3,
"type": 2
},
{
"componentId": 11,
"componentTypeId": 1669830167,
"defaultSubtypes": [
"Arcana"
],
"id": "2-2109",
"isInfinite": false,
"isOptional": false,
"label": "Choose a Skill",
"optionValue": 3789,
"options": [
{
"description": null,
"id": 3784,
"label": "Acrobatics"
},
{
"description": null,
"id": 3792,
"label": "Animal Handling"
},
{
"description": null,
"id": 3787,
"label": "Arcana"
},
{
"description": null,
"id": 3783,
"label": "Athletics"
},
{
"description": null,
"id": 3797,
"label": "Deception"
},
{
"description": null,
"id": 3788,
"label": "History"
},
{
"description": null,
"id": 3793,
"label": "Insight"
},
{
"description": null,
"id": 3798,
"label": "Intimidation"
},
{
"description": null,
"id": 3789,
"label": "Investigation"
},
{
"description": null,
"id": 3794,
"label": "Medicine"
},
{
"description": null,
"id": 3790,
"label": "Nature"
},
{
"description": null,
"id": 3795,
"label": "Perception"
},
{
"description": null,
"id": 3799,
"label": "Performance"
},
{
"description": null,
"id": 3800,
"label": "Persuasion"
},
{
"description": null,
"id": 3791,
"label": "Religion"
},
{
"description": null,
"id": 3785,
"label": "Sleight of Hand"
},
{
"description": null,
"id": 3786,
"label": "Stealth"
},
{
"description": null,
"id": 3796,
"label": "Survival"
}
],
"parentChoiceId": null,
"subType": 1,
"type": 2
},
{
"componentId": 11,
"componentTypeId": 1669830167,
"defaultSubtypes": [
"History"
],
"id": "2-2110",
"isInfinite": false,
"isOptional": false,
"label": "Choose a Skill",
"optionValue": 3793,
"options": [
{
"description": null,
"id": 3784,
"label": "Acrobatics"
},
{
"description": null,
"id": 3792,
"label": "Animal Handling"
},
{
"description": null,
"id": 3787,
"label": "Arcana"
},
{
"description": null,
"id": 3783,
"label": "Athletics"
},
{
"description": null,
"id": 3797,
"label": "Deception"
},
{
"description": null,
"id": 3788,
"label": "History"
},
{
"description": null,
"id": 3793,
"label": "Insight"
},
{
"description": null,
"id": 3798,
"label": "Intimidation"
},
{
"description": null,
"id": 3789,
"label": "Investigation"
},
{
"description": null,
"id": 3794,
"label": "Medicine"
},
{
"description": null,
"id": 3790,
"label": "Nature"
},
{
"description": null,
"id": 3795,
"label": "Perception"
},
{
"description": null,
"id": 3799,
"label": "Performance"
},
{
"description": null,
"id": 3800,
"label": "Persuasion"
},
{
"description": null,
"id": 3791,
"label": "Religion"
},
{
"description": null,
"id": 3785,
"label": "Sleight of Hand"
},
{
"description": null,
"id": 3786,
"label": "Stealth"
},
{
"description": null,
"id": 3796,
"label": "Survival"
}
],
"parentChoiceId": null,
"subType": 1,
"type": 2
}
],
"class": [
{
"componentId": 328,
"componentTypeId": 12168134,
"defaultSubtypes": [],
"id": "1-328",
"isInfinite": false,
"isOptional": false,
"label": null,
"optionValue": null,
"options": [
{
"description": null,
"id": 695,
"label": "Ability Score Improvement"
},
{
"description": null,
"id": 696,
"label": "Feat"
}
],
"parentChoiceId": null,
"subType": null,
"type": 1
},
{
"componentId": 412,
"componentTypeId": 12168134,
"defaultSubtypes": [],
"id": "7-412",
"isInfinite": false,
"isOptional": false,
"label": null,
"optionValue": 55,
"options": [],
"parentChoiceId": null,
"subType": null,
"type": 7
},
{
"componentId": 470,
"componentTypeId": 12168134,
"defaultSubtypes": [],
"id": "2-1597",
"isInfinite": false,
"isOptional": false,
"label": "Choose a Wizard Skill",
"optionValue": 4154,
"options": [
{
"description": null,
"id": 4154,
"label": "Arcana"
},
{
"description": null,
"id": 4155,
"label": "History"
},
{
"description": null,
"id": 4156,
"label": "Insight"
},
{
"description": null,
"id": 4157,
"label": "Investigation"
},
{
"description": null,
"id": 4158,
"label": "Medicine"
},
{
"description": null,
"id": 4159,
"label": "Religion"
}
],
"parentChoiceId": null,
"subType": 1,
"type": 2
},
{
"componentId": 470,
"componentTypeId": 12168134,
"defaultSubtypes": [],