forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Izzy; Incarnate.json
2688 lines (2688 loc) · 78 KB
/
Izzy; Incarnate.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
{
"$schema": "../schema.json",
"_meta": {
"sources": [
{
"json": "Izzy:Incarnate",
"full": "The Incarnate",
"abbreviation": "INC",
"authors": [
"Izzy"
],
"convertedBy": [
"Ikaguia"
],
"url": "https://www.gmbinder.com/share/-LmMupLVyMuux8_CwNb9",
"version": "1.1"
}
],
"dateAdded": 1592873199,
"dateLastModified": 1592873199
},
"class": [
{
"name": "Incarnate",
"source": "Izzy:Incarnate",
"hd": {
"number": 1,
"faces": 6
},
"proficiency": [
"wis",
"cha"
],
"spellcastingAbility": "cha",
"casterProgression": "1/2",
"startingProficiencies": {
"weapons": [
"simple"
],
"skills": [
{
"choose": {
"from": [
"athletics",
"acrobatics",
"sleight of hand",
"stealth",
"arcana",
"history",
"investigation",
"nature",
"religion",
"animal handling",
"insight",
"medicine",
"perception",
"survival",
"deception",
"intimidation",
"performance",
"persuasion"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@item quarterstaff|phb} or (b) a {@item light crossbow|phb} and {@item crossbow bolts (20)|phb|20 bolts}",
"(a) {@item dungeoneer's pack|phb} or (b) {@item explorer's pack|phb}",
"If proficient, (a) {@item leather armor|phb}, (b) {@item scale mail|phb}, or (c) {@item chain mail|phb}",
"One {@item dagger|phb}"
],
"goldAlternative": "{@dice 4d4×10|5d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"quarterstaff|phb"
],
"b": [
"light crossbow|phb",
"crossbow bolts (20)|phb"
]
},
{
"a": [
"dungeoneer's pack|phb"
],
"b": [
"explorer's pack|phb"
]
},
{
"If proficient,": [],
"{@item leather armor|phb},": [],
"{@item scale mail|phb}, or": []
},
{
"_": [
"dagger|phb"
]
}
]
},
"classTableGroups": [
{
"colLabels": [
"{@filter Spells Known|spells|class=Incarnate (INC)}"
],
"rows": [
[
0
],
[
2
],
[
3
],
[
3
],
[
4
],
[
4
],
[
5
],
[
5
],
[
6
],
[
6
],
[
7
],
[
7
],
[
8
],
[
8
],
[
9
],
[
9
],
[
10
],
[
10
],
[
11
],
[
11
]
]
},
{
"title": "Spell Slots per Spell Level",
"colLabels": [
"{@filter 1st|spells|level=1|class=Incarnate (INC)}",
"{@filter 2nd|spells|level=2|class=Incarnate (INC)}",
"{@filter 3rd|spells|level=3|class=Incarnate (INC)}",
"{@filter 4th|spells|level=4|class=Incarnate (INC)}",
"{@filter 5th|spells|level=5|class=Incarnate (INC)}"
],
"rows": [
[
2,
0,
0,
0,
0
],
[
2,
0,
0,
0,
0
],
[
3,
0,
0,
0,
0
],
[
3,
0,
0,
0,
0
],
[
4,
2,
0,
0,
0
],
[
4,
2,
0,
0,
0
],
[
4,
3,
0,
0,
0
],
[
4,
3,
0,
0,
0
],
[
4,
3,
2,
0,
0
],
[
4,
3,
2,
0,
0
],
[
4,
3,
3,
0,
0
],
[
4,
3,
3,
0,
0
],
[
4,
3,
3,
1,
0
],
[
4,
3,
3,
1,
0
],
[
4,
3,
3,
2,
0
],
[
4,
3,
3,
2,
0
],
[
4,
3,
3,
3,
1
],
[
4,
3,
3,
3,
1
],
[
4,
3,
3,
3,
2
],
[
4,
3,
3,
3,
2
]
]
}
],
"classFeatures": [
{
"classFeature": "Soul Shape|Incarnate|Izzy:Incarnate|1",
"gainSubclassFeature": true
},
"Soul Barrier|Incarnate|Izzy:Incarnate|1",
"Spellcasting|Incarnate|Izzy:Incarnate|2",
"Soulburn|Incarnate|Izzy:Incarnate|2",
{
"classFeature": "Cosmic Incarnation|Incarnate|Izzy:Incarnate|3",
"gainSubclassFeature": true
},
"Manifest Auras|Incarnate|Izzy:Incarnate|3",
"Ability Score Improvement|Incarnate|Izzy:Incarnate|4",
"Proficiency Versatility|Incarnate|Izzy:Incarnate|4|UAClassFeatureVariants",
{
"classFeature": "Soulshape feature|Incarnate|Izzy:Incarnate|5",
"gainSubclassFeature": true
},
"Free Spirit|Incarnate|Izzy:Incarnate|6",
"Soulburn (2 uses)|Incarnate|Izzy:Incarnate|6",
{
"classFeature": "Incarnation feature|Incarnate|Izzy:Incarnate|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Incarnate|Izzy:Incarnate|8",
"Proficiency Versatility|Incarnate|Izzy:Incarnate|8|UAClassFeatureVariants",
"Elevated Being|Incarnate|Izzy:Incarnate|10",
{
"classFeature": "Soulshape feature|Incarnate|Izzy:Incarnate|11",
"gainSubclassFeature": true
},
"Ability Score Improvement|Incarnate|Izzy:Incarnate|12",
"Proficiency Versatility|Incarnate|Izzy:Incarnate|12|UAClassFeatureVariants",
{
"classFeature": "Incarnation feature|Incarnate|Izzy:Incarnate|14",
"gainSubclassFeature": true
},
{
"classFeature": "Soulshape feature|Incarnate|Izzy:Incarnate|15",
"gainSubclassFeature": true
},
"Ascension|Incarnate|Izzy:Incarnate|15",
"Ability Score Improvement|Incarnate|Izzy:Incarnate|16",
"Proficiency Versatility|Incarnate|Izzy:Incarnate|16|UAClassFeatureVariants",
{
"classFeature": "Incarnation feature|Incarnate|Izzy:Incarnate|18",
"gainSubclassFeature": true
},
"Soulburn (3 uses)|Incarnate|Izzy:Incarnate|18",
"Ability Score Improvement|Incarnate|Izzy:Incarnate|19",
"Proficiency Versatility|Incarnate|Izzy:Incarnate|19|UAClassFeatureVariants",
"Immortal|Incarnate|Izzy:Incarnate|20"
],
"classSpells": [
"Bane",
"Bless",
"Catapult",
"Cause Fear",
"Charm Person",
"Command",
"Comprehend Languages",
"Cure Wounds",
"Detect Evil and Good",
"Detect Magic",
"Disguise Self",
"False Life",
"Faerie Fire",
"Feather Fall",
"Find Familiar",
"Guiding Bolt",
"Heroism",
"Identify",
"Inflict Wounds",
"Jump",
"Longstrider",
"Protection from Evil and Good",
"Ray of Sickness",
"Sanctuary",
"Alter Self",
"Blindness/Deafness",
"Blur",
"Calm Emotions",
"Darkvision",
"Detect Thoughts",
"Enhance Ability",
"Enlarge/Reduce",
"Enthrall",
"Hold Person",
"Invisibility",
"Lesser Restoration",
"Levitate",
"Locate Object",
"Mind Spike",
"Mirror Image",
"Phantasmal Force",
"Ray of Enfeeblement",
{
"name": "Read Essence",
"source": "Izzy:Incarnate"
},
"See Invisibility",
"Silence",
"Suggestion",
"Warding Bond",
"Zone of Truth",
"Animate Dead",
"Blink",
"Bestow Curse",
"Clairvoyance",
"Enemies Abound",
"Fear",
"Fly",
"Gaseous Form",
"Hypnotic Pattern",
"Life Transference",
"Nondetection",
"Protection from Energy",
"Remove Curse",
"Revivify",
"Sending",
"Speak with Dead",
"Tongues",
"Vampiric Touch",
"Arcane Eye",
"Antilife Shell",
"Banishment",
"Blight",
"Charm Monster",
"Compulsion",
"Confusion",
"Death Ward",
"Dimension Door",
"Dominate Beast",
"Freedom of Movement",
"Greater Invisibility",
"Locate Creature",
"Phantasmal Killer",
"Polymorph",
"Sickening Radiance",
"Awaken",
"Danse Macabre",
"Dispel Evil and Good",
"Dominate Person",
"Dream",
"Enervation",
"Far Step",
"Geas",
"Hallow",
"Hold Monster",
"Mislead",
"Modify Memory",
"Reincarnate",
"Scrying",
"Seeming",
"Skill Empowerment",
"Telekinesis"
],
"subclassTitle": "Soul Shape | Incarnation",
"spellsKnownProgression": [
0,
2,
3,
3,
4,
4,
5,
5,
6,
6,
7,
7,
8,
8,
9,
9,
10,
10,
11,
11
]
}
],
"classFeature": [
{
"name": "Soul Shape",
"source": "Izzy:Incarnate",
"page": 3,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 1,
"entries": [
"When your body and spirit were first split, the true nature of your soul was revealed to you, imparting you with latent abilities. Choose one of the following: the Shape of the Warrior, the Shape of the Conduit, the Shape of the Guardian, or the Shape of the Beast, each of which are detailed later in this document. Your choice of shape will grant you features at 1st, 5th, 11th, and 15th level."
]
},
{
"name": "Soul Barrier",
"source": "Izzy:Incarnate",
"page": 3,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 1,
"entries": [
"The most basic expression of your freer spirit is a ward of soulstuff that defends your mind and body. This barrier is a pool of shielding energy equal to three times your incarnate level. Whenever you take damage, you can use your reaction to expend any number from this pool, up to the amount remaining in this pool, to reduce the damage you take by that amount. Until the end of your next turn, any damage you take that is equal to or less than the amount you spent is reduced to 0.",
"This barrier regains all of its shielding power whenever you finish a long rest, and half of its shielding power when you finish a short rest."
]
},
{
"name": "Spellcasting",
"source": "Izzy:Incarnate",
"page": 3,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 2,
"entries": [
"Starting at 2nd level, you learn to express the font of divine power in your soul through the enactment of spells",
{
"type": "entries",
"name": "Spell Slots",
"entries": [
"The Incarnate table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these incarnate spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.",
"For example, if you know the 1st-level spell {@spell cause fear} and have a 1st-level and a 2nd-level spell slot available, you can cast {@spell cause fear} using either slot."
]
},
{
"type": "entries",
"name": "Spells Known of 1st level and Higher",
"entries": [
"You know two 1st-level spells of your choice from the {@filter incarnate spell list|spells|class=Incarnate (INC)}.",
"The Spells Known column of the Incarnate table shows when you learn more incarnate spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 4th level in this class, you can learn one new spell of 1st or 2nd level.",
"Additionally, when you gain a level in this class, you can choose one of the incarnate spells you know and replace it with another spell from the incarnate spell list, which also must be of a level for which you have spell slots."
]
},
{
"type": "entries",
"name": "Spellcasting Ability",
"entries": [
"Charisma is your spellcasting ability for your incarnate spells, since the power of your magic relies on your ability to project your soul into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition. you use your Charisma modifier when setting the saving throw DC for an incarnate spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"cha"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"cha"
]
}
]
},
{
"type": "entries",
"name": "Soul Focus",
"entries": [
"When you cast spells that require a material component, you can ignore that component unless it has an indicated cost, in which case you must have that specific component before you can cast the spell as normal"
]
}
]
},
{
"name": "Soulburn",
"source": "Izzy:Incarnate",
"page": 4,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 2,
"entries": [
"Also at 2nd level, your soul can burn through its vast reserves of latent magic in moments of great peril. As a bonus action, you can enter a soulburn, which lasts for 1 minute, until you are {@condition incapacitated}, or until you choose to end it (no action required). When entering this state, choose an emotion to channel: determination, elation, fear, or fury. While in this state, you can't use your soul barrier, but you gain the following benefits:",
{
"type": "list",
"items": [
"You radiate bright light of a color of your choice in a 10-foot radius. This light ignores magical darkness.",
"As a bonus action on each of your turns, you can choose to lose a number of hit points equal to half your incarnate level. If you do, your soul barrier recovers an equal amount of any missing shielding power, and you gain an additional benefit based on your chosen emotion."
]
},
"You can use this feature once, and regain any expended uses when you finish a long rest. You can use this feature twice between long rests starting at 6th level and three times between long rests starting at 18th level.",
{
"type": "entries",
"name": "Determination",
"entries": [
"When you sacrifice hit points, your soul barrier regains additional shielding power equal to your Charisma modifier (minimum of 1), provided you have been taken damage from a hostile creature before the start of your previous turn."
]
},
{
"type": "entries",
"name": "Elation",
"entries": [
"When you sacrifice hit points, you have advantage on the next attack you make before the start of your next turn."
]
},
{
"type": "entries",
"name": "Fear",
"entries": [
"When you sacrifice hit points, your speed increases by 10 plus 5 times the number of hit points sacrificed until the start of your next turn."
]
},
{
"type": "entries",
"name": "Fury",
"entries": [
"When you sacrifice hit points, you deal bonus damage to the next creature you deal damage to before the end of your next turn. This damage is equal to {@damage 1d4} plus the amount of hit points spent."
]
}
]
},
{
"name": "Cosmic Incarnation",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 3,
"entries": [
"Starting at 3rd level, you choose the archetypal cosmic force your soul has begun to mimic. Generally, an incarnate's soul seeks to mimic cosmic forces that embody the individual's views. Choose one of the following: Celestial Soul, Abyssal Soul, or Verdant Soul.",
"Your choice of incarnation grants you features at 3rd level, 6th level, 14th level, and 18th level.",
{
"type": "entries",
"name": "Incarnation Selective Spell Lists",
"entries": [
"Each incarnation has a list of spells associated with it, detailed in the its description. When you reach certain levels in this class, you learn one spell of your choice from the two spells presented at that level. A spell learned this way counts as an incarnate spell for you, but it doesn't count against the number of incarnate spells you know.",
"If either spell is not in the incarnate spell list, it is added to the list for you."
]
}
]
},
{
"name": "Manifest Auras",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 3,
"entries": [
"Also at 3rd level, you learn how to make the essence of a creature's soul visible to you. As an action, you can activate this sight for the next minute. For the duration, every creature within 30 feet of you appears to radiate a colorful aura in your vision. Each creature's aura appears differently based on their cosmic significance and power. You can see this aura through cover, and even if the creature is {@condition invisible}, allowing you to ignore the condition. You know the emotional state of every creature you see this way, and have advantage on Wisdom ({@skill Insight}) and Charisma checks against them.",
"Once you use this feature, you can't use it again until you finish a long rest."
]
},
{
"name": "Ability Score Improvement",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 4,
"entries": [
"When you reach 4th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 4,
"entries": [
"{@i 4th-level feature (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Soulshape feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 5,
"entries": [
"At 5th level, you gain a feature granted by your Soulshape choice."
]
},
{
"name": "Free Spirit",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 6,
"entries": [
"At 6th level, you can release yourself from pains of the body and mind in dire moments. When you first enter a soulburn you can choose to end one of the following conditions that may be affecting yourself: {@condition charmed}, {@condition frightened}, {@condition poisoned}, {@condition deafened}, or {@condition blinded}."
]
},
{
"name": "Soulburn (2 uses)",
"source": "Izzy:Incarnate",
"page": 4,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 6,
"entries": [
"You can use this feature twice between long rests starting at 6th level."
]
},
{
"name": "Incarnation feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 7,
"entries": [
"At 7th level, you gain a feature granted by your Cosmic Incarnation choice."
]
},
{
"name": "Ability Score Improvement",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 8,
"entries": [
"When you reach 8th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 8,
"entries": [
"{@i 8th-level feature (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Elevated Being",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 10,
"entries": [
"At 10th level, your body and soul begin to merge into a singular entity sustained by the cosmos. You gain the following benefits:",
{
"type": "list",
"items": [
"You no longer need to eat, drink, or breathe.",
"You can choose to be immune to any spell or effect that would alter your form.",
"You no longer need to sleep and can't be forced to sleep by any means. To gain the benefits of a long rest, you can spend 4 hours doing light activity."
]
},
"Additionally, being {@condition incapacitated} no longer ends your soulburn."
]
},
{
"name": "Soulshape feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 11,
"entries": [
"At 11th level, you gain a feature granted by your Soulshape choice."
]
},
{
"name": "Ability Score Improvement",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 12,
"entries": [
"When you reach 12th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 12,
"entries": [
"{@i 12th-level feature (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Incarnation feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 14,
"entries": [
"At 14th level, you gain a feature granted by your Cosmic Incarnation choice."
]
},
{
"name": "Soulshape feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 15,
"entries": [
"At 15th level, you gain a feature granted by your Soulshape choice."
]
},
{
"name": "Ascension",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 15,
"entries": [
"Starting at 15th level, your body has become attuned to the planes. You no longer age and can not die due to the passage of time, and you can ignore any effects caused by your environment or current plane of existence.",
"Additionally, you can cast {@spell plane shift} without expending a spell slot. If you have been to a plane before, you do not need its tuning fork to plane shift to it. Once you cast a spell using this feature, you can't do so again until you finish a long rest."
]
},
{
"name": "Ability Score Improvement",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 16,
"entries": [
"When you reach 16th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 16,
"entries": [
"{@i 16th-level feature (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Incarnation feature",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 18,
"entries": [
"At 18th level, you gain a feature granted by your Cosmic Incarnation choice."
]
},
{
"name": "Soulburn (3 uses)",
"source": "Izzy:Incarnate",
"page": 4,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 18,
"entries": [
"You can use this feature three times between long rests starting at 18th level."
]
},
{
"name": "Ability Score Improvement",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 19,
"entries": [
"When you reach 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 19,
"entries": [
"{@i 19th-level feature (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Immortal",
"source": "Izzy:Incarnate",
"page": 5,
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"level": 20,
"entries": [
"At 20th level, you have become an outsider, a being at one energy of the multiverse. You can't be unwillingly possessed, teleported, or raised as an undead, nor can your soul be unwillingly stolen, eaten, or trapped.",
"You can spend a week designating an unoccupied 10 foot-cube as your anchor. A monument of your own design appears in that area. Only a deity or the {@spell wish} spell can move or destroy this monument. If you die, a new dormant copy of your body appears on the monument. In {@dice 1d4} weeks, you awaken from this new body, retaining the same personality, memories, and abilities, as well any equipment you were attuned to, which are teleported to the monument when you awaken. Before you awaken, this body has 5 AC and 1HP. If it dies, a new one begins growing with the same roll of the {@dice d4}. If a spell that has the sole effect of restoring you to life (but not undeath) is cast on this body, you instantly awaken."
]
}
],
"subclassFeature": [
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Celestial",
"subclassSource": "Izzy:Incarnate",
"level": 1,
"header": 1,
"type": "entries",
"entries": []
},
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Warrior",
"subclassSource": "Izzy:Incarnate",
"level": 3,
"header": 1,
"type": "entries",
"entries": []
},
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Celestial",
"subclassSource": "Izzy:Incarnate",
"level": 5,
"header": 1,
"type": "entries",
"entries": []
},
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Warrior",
"subclassSource": "Izzy:Incarnate",
"level": 7,
"header": 1,
"type": "entries",
"entries": []
},
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Celestial",
"subclassSource": "Izzy:Incarnate",
"level": 11,
"header": 1,
"type": "entries",
"entries": []
},
{
"name": ".",
"source": "Izzy:Incarnate",
"className": "Incarnate",
"classSource": "Izzy:Incarnate",
"subclassShortName": "Warrior",
"subclassSource": "Izzy:Incarnate",
"level": 14,
"header": 1,
"type": "entries",
"entries": []
},