forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfKore; Disciple.json
1565 lines (1565 loc) · 72.9 KB
/
InfKore; Disciple.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": "InfKore:Disciple",
"full": "Disciple Class",
"abbreviation": "Disc",
"authors": [
"InfKore"
],
"convertedBy": [
"Ikaguia"
],
"url": "https://www.reddit.com/r/UnearthedArcana/comments/a2h3iu/the_disciple_become_a_wandering_disciple_a/",
"version": "2018.12.02"
}
],
"optionalFeatureTypes": {
"Disc:D": "Discipline"
},
"dateAdded": 1556992506,
"dateLastModified": 1556992506
},
"class": [
{
"name": "Disciple",
"source": "InfKore:Disciple",
"hd": {
"number": 1,
"faces": 8
},
"proficiency": [
"str",
"wis"
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"heavy",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
],
"tools": [
"Choose one type of artisan's tools or one musical instrument"
],
"skills": [
{
"choose": {
"from": [
"acrobatics",
"athletics",
"history",
"insight",
"intimidation",
"perception",
"religion",
"sleight of hand"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@item chain mail|phb}, (b) a {@item scale mail|phb} or (c) a {@item leather armor|phb}",
"(a) a {@filter martial weapon|items|source=phb|category=basic|type=martial weapon} and a {@item shield|phb} or (b) two {@filter martial weapons|items|source=phb|category=basic|type=martial weapon}",
"(a) {@item javelin|phb|two javelins} or (b) {@item dagger|phb|three daggers}",
"(a) a {@item dungeoneer's pack|PHB} or (b) an {@item explorer's pack|PHB}"
],
"goldAlternative": "{@dice 4d4×10|4d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"chain mail|phb"
],
"b": [
"scale mail|phb"
],
"c": [
"leather armor|phb"
]
},
{
"a": [
{
"equipmentType": "weaponMartial"
},
"shield|phb"
],
"b": [
{
"equipmentType": "weaponMartial",
"quantity": 2
}
]
},
{
"a": [
"javelin|phb"
],
"b": [
"dagger|phb"
]
},
{
"a": [
"dungeoneer's pack|PHB"
],
"b": [
"explorer's pack|PHB"
]
}
]
},
"multiclassing": {
"requirements": {
"or": [
{
"str": 13,
"dex": 13
}
],
"wis": 13
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
]
}
},
"fluff": [
{
"source": "InfKore:Disciple",
"page": 1,
"entries": [
"An elven woman strides calmly through a forest glade, smirking as she subtly grips her sheathed blade. She closes her eyes as brigands leap from the surrounding brush. Before they can even shout their demands, the woman's blade makes a wide arc at the group. Each brigand manages to barely dodge her preemptive strike, but their movements suddenly stop as they start to draw their blades. A large wound appears across each of their torsos where her blade had grazed them, and then they slump to the ground.",
"Atop a grassy plateau, a lone human figure stands in total focus amidst a swarm of hovering spectral blades. Like a masterful conductor, the figure directs the blades to fluidly strike the targets painted on the stones around. With a quiet whisper of pride, the figure recalls the blades before willing them to fall to dust and blow away with the wind.",
"A battle rages upon a blood-soaked field overlooked by a regal keep. In its center, stands a lone battle-worn tiefling fighting for his life. A pair of hulking spectral arms sprout from his back, allowing the tiefling to wield four axes at once. He charges into a group of soldiers, wreathing himself in flames as the lone figure carves into the enemy line. Each step taken could be his last, yet the tiefling fights with the widest of grins.",
"Although these warriors fight using a diverse range of extraordinary methods, they are all disciples. Disciples are defined by their mystical fighting styles and the introspective focus that gives purpose to their training. For a disciple, combat is a conduit of self-improvement, and battlefields exist to test the strength of ideals.",
{
"name": "Masters of Tempo",
"entries": [
"The key to a disciple's magic prowess is awareness and focus. Every movement a creature makes causes a small, nearly imperceptible ripple across elements of the weave of magic. Using their ideals as an anchor for their focus, disciples enter a state of utter clarity where they can perceive and read these ripples, ultimately utilizing the power within these ripples\u2014called {@bold tempo}\u2014to fuel their mystical techniques. As a disciple grows and solidifies their grasp on their ideals, their ability to maintain this focus increases drastically, improving their martial abilities."
]
},
{
"name": "Forged Ideals",
"entries": [
"A disciple's ideals are represented in their fighting style by the sublime disciplines they follow. While some disciples discover these paths themselves, others learn them from masters of the art. Each sublime discipline holds one ideal above all others, and it serves as the anchor for the tempo techniques of that discipline. As a result, combat using these disciplines is a form of self expression and an opportunity to refine one's philosophy. The danger and rigor of the battlefield provides the perfect situation to test the disciple's focus, their understanding of themselves, and their values."
]
}
],
"name": "Disciple",
"type": "section"
},
{
"source": "InfKore:Disciple",
"page": 2,
"entries": [
{
"name": "Born Wanderers",
"entries": [
"Because of this predisposition towards experience and conflict, it is rare you'll find a disciple that stays in one place for too long, or subsisting under the yoke of military regulation. They are natural wanderers, and tend to flock towards interesting people that may lead them to greater challenges and adventures. Such people often prove to be worthy rivals and life-long friends for the wandering disciple: the perfect sparks to ignite the flames of inspiration."
]
},
{
"name": "Eternal Students",
"entries": [
"To a disciple, survival is often secondary to growth. To that end, you may yet find disciples working as sellswords or mercenaries in an attempt to find new conflicts to test themselves. Each and every fight is an opportunity to push past one's limits, and test not only ability, but also their willpower and determination. The path of the disciple is one filled with decision. Each must decide which disciplines to pursue and which to discard, as the path to perfection is littered with broken philosophies and weak hearts."
]
},
{
"name": "Creating a Disciple",
"entries": [
"When you are creating your disciple, the most important thing to consider is why they fight. For a disciple, fighting is a means of self-discovery and affirmation. What kind of lessons have their fights taught them up until this point? What kind of person or warrior do they strive to be, and how close to that idealized version of themselves are they? Do they have a specific person or creature they are trying to defeat? Or perhaps they are seeking out a new mentor to fill a gap they feel in their skill or personhood? Consider how your character would feel when faced with what looks to be an insurmountable threat, and how they would feel after losing or defeating it.",
"Equally important is when your character first began to notice the flow of tempo around them. Was it something they always saw, but never realized its significance? Maybe it was inherited? Or maybe the power was unlocked in a dire moment of emotional or physical danger? Or did you eventually come to see the tendrils of tempo through deliberate training, either alone or under a master or school? Which discipline did you manifest first, and why? Lastly, how does your character feel about their power now? How your character first came upon this magic should influence how they feel about both it and themselves in relation to it."
]
},
{
"name": "Quick Build",
"entries": [
"You can make a disciple quickly by following these suggestions. First, make Strength or Dexterity your highest ability score, depending on whether you want to focus on weapons that use strength or finesse weapons. Your next-highest ability score should be Wisdom and then you make Constitution your third-highest score. Second, choose the {@background folk hero} background."
]
}
],
"type": "section"
}
],
"classTableGroups": [
{
"colLabels": [
"Tempo Points",
"Disciplines Known"
],
"rows": [
[
0,
1
],
[
2,
2
],
[
3,
2
],
[
3,
2
],
[
4,
3
],
[
4,
3
],
[
5,
3
],
[
5,
3
],
[
6,
4
],
[
6,
4
],
[
7,
4
],
[
7,
4
],
[
8,
4
],
[
8,
4
],
[
9,
4
],
[
9,
4
],
[
10,
4
],
[
10,
4
],
[
10,
4
],
[
10,
4
]
]
}
],
"classFeatures": [
"Sublime Discipline|Disciple|InfKore:Disciple|1",
"Martial Intuition|Disciple|InfKore:Disciple|1",
"Tempo|Disciple|InfKore:Disciple|2",
"Fighting Style|Disciple|InfKore:Disciple|2",
{
"classFeature": "Sublime Journey|Disciple|InfKore:Disciple|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Disciple|InfKore:Disciple|4",
"Extra Attack|Disciple|InfKore:Disciple|5",
"Alacrity|Disciple|InfKore:Disciple|5",
"Preternatural Awareness|Disciple|InfKore:Disciple|6",
{
"classFeature": "Sublime Journey Feature|Disciple|InfKore:Disciple|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Disciple|InfKore:Disciple|8",
"Blind Sense|Disciple|InfKore:Disciple|9",
"Ability Score Improvement|Disciple|InfKore:Disciple|10",
{
"classFeature": "Sublime Journey Feature|Disciple|InfKore:Disciple|11",
"gainSubclassFeature": true
},
"Ability Score Improvement|Disciple|InfKore:Disciple|12",
"Imprinted Growth|Disciple|InfKore:Disciple|13",
{
"classFeature": "Sublime Journey Feature|Disciple|InfKore:Disciple|14",
"gainSubclassFeature": true
},
"Timeless Body|Disciple|InfKore:Disciple|15",
"Ability Score Improvement|Disciple|InfKore:Disciple|16",
"Tempo Mastery|Disciple|InfKore:Disciple|17",
{
"classFeature": "Sublime Journey Feature|Disciple|InfKore:Disciple|18",
"gainSubclassFeature": true
},
"Ability Score Improvement|Disciple|InfKore:Disciple|19",
"Great Master|Disciple|InfKore:Disciple|20"
],
"subclassTitle": "Sublime Journey"
}
],
"optionalfeature": [
{
"name": "Ardent Lion",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"No true warrior fights in isolation; their friends, family, and all their allies follow them into every fight. Ardent Lion disciples fight using rallying cries and by utilizing the strength of their bonds to perform superhuman feats in combat.",
{
"type": "entries",
"name": "Ideal: Camaraderie",
"entries": [
"Your allies are your family, and those bonds are more precious than anything the world can muster. Cherish them and look out for them, for they will make you your best self."
]
},
{
"type": "entries",
"name": "Signature Art: Rally",
"entries": [
"As an action, you let out a riveting war cry that sends jolts through the body of your allies. Any allied creature within 30 feet can use their reaction to move up to their speed without provoking opportunity attacks.",
"This ability's range increases by 30 feet when you reach 5th level (60 feet), 11th level (90 feet), at 17th level (120 feet)."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Warding Strike (2nd Level)",
"entries": [
"When you hit a creature with a melee weapon attack, you can use your bonus action and spend 1 tempo point to instill hesitation within them. The next attack it makes before the start of your next turn has disadvantage if it is against someone other than you."
]
},
{
"type": "entries",
"name": "Bolstering Bond (5th Level)",
"entries": [
"As an action, you can spend up to 5 tempo points to bolster both you and an ally. You and an ally of your choice within 30 feet of you gain {@dice 1d8} temporary hit points for each tempo point you spent. These temporary hit points last 1 minute, until you use this technique again, or until you focus to regain your tempo."
]
},
{
"type": "entries",
"name": "Unified Assault (11th Level)",
"entries": [
"Whenever you hit a creature with a melee weapon attack, you can use your bonus action and spend 3 tempo points to call in an assault. A single allied creature of your choice within 30 feet of you can use their reaction to make a weapon attack against that same creature."
]
},
{
"type": "entries",
"name": "Fury of the Fallen (17th Level)",
"entries": [
"Whenever you see a creature reduce an allied creature to 0 hit points, you can use your reaction and spend 4 tempo points to move up to your speed and make an attack against the attacking creature. On a hit, the attack deals damage as normal and the allied creature regains hit points equal to your level."
]
}
]
}
]
},
{
"name": "Coursing Ember",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"To live life on the sidelines, bored and discontent, is to not really live life at all. Disciples of the Coursing Ember discipline are fiery individuals who follow their whims and passions to the ends of the earth. Coursing Ember techniques uses the disciple's inner flame to grant amazing mobility and presence.",
{
"type": "entries",
"name": "Ideal: Passion",
"entries": [
"Your heart must burn like the desert sun. Do not live idly and let opportunities pass you by. Be invested in every action you choose to take, and use the fire in your eyes to guide you into the future."
]
},
{
"type": "entries",
"name": "Signature Art: Stance of the Searing Lash",
"entries": [
"On your turn you can choose to cloak any weapons you are wielding in flame for the next minute (no action required), or until you lose your concentration (as if you were concentrating on a spell). For the duration, whenever you make a melee attack with those weapons on your turn, your reach is 5 feet greater than normal and your attacks deal fire damage instead of their normal damage.",
"Your reach increases by an additional 5 feet at 5th level, and again at 11th and 17th levels."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Pyroclastic Charge (2nd Level)",
"entries": [
"When you take the Dash action on your turn, you can spend 1 or more tempo points to ride the wave of a surging blaze. At the end of your turn, each creature within 5 feet of you must make a Dexterity saving throw. On a failure, it takes 1d8 fire damage for each tempo point you spent, or half as much on a success."
]
},
{
"type": "entries",
"name": "Infernal Echo (5th Level)",
"entries": [
"When a hostile creature you can see leaves your reach, you can use your reaction and spend 2 tempo points to briefly become a living flame. You can move up to your speed as part of this reaction. If you end this movement within reach of the creature that triggered this reaction, you can make a melee weapon attack against it, dealing an additional 1d6 fire damage on a hit."
]
},
{
"type": "entries",
"name": "Flame's Blessing Stance (11th Level)",
"entries": [
"At the start of your turn, you can spend 2 tempo points to engulf yourself in beautiful flames. Until the start of your next turn, you are immune to fire damage, and creatures take 1d8 fire damage any time they a melee attack against you."
]
},
{
"type": "entries",
"name": "Crossfire (17th Level)",
"entries": [
"As an action, you can spend up to 5 tempo points (minimum of 3), choosing one creature within 100 feet of you for each point you spent. Each creature must make a Charisma saving throw. If a creature fails, it take 4d6 radiant damage as its spirit is overcome by a searing flame. A creature can choose to fail this saving throw.",
"A 5-foot wide line of fire then erupts between from each creature (not including the creature's space) that failed their saving throw to each other creature that failed their saving throw. If a creature is in at least one line of fire, it must make a Dexterity saving throw. On a failure, that creature takes 8d6 fire damage."
]
}
]
}
]
},
{
"name": "Diamond Mind",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"Students of the Diamond Mind discipline are renowned for their ability to remain calm in even the most die of situations. Combat is an equation to be solved, and it is the practice of the Diamond Mind to understand all of its elements. This view lends itself to a prescient combat style, where the practioner appears able to act in impossibly short spans of time.",
{
"type": "entries",
"name": "Ideal: Order",
"entries": [
"Everything has a cause and an effect. The world may appear chaotic, but a clean layer of order underlies it all. The more you discover and understand this order, the greater a warrior and the more fulfilled an individual you will become."
]
},
{
"type": "entries",
"name": "Signature Art: Quick Draw",
"entries": [
"If you are not surprised, immediately after initiative is rolled, but before anyone acts, you can move up half your your speed and make a single weapon attack. This attack deals double damage to objects and structures.",
"If you are surprised, you can instead use this signature art to no longer be surprised."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Prescient Counter (2nd Level)",
"entries": [
"When you are hit by an attack, you can use your reaction and spend 2 tempo points to gain an AC bonus equal to your Wisdom modifier against that attack, potentially causing it to miss."
]
},
{
"type": "entries",
"name": "Flicker Step (5th Level)",
"entries": [
"As an action, you can spend 3 tempo points and pick a hostile creature within 20 feet of you. You can teleport to an unoccupied space within 5 feet of that creature, and make a melee weapon attack against any creature in a 5-foot wide line from your original location to your new location.",
"If a creature damaged by this technique has an amount of hit points less than or equal to your disciple level at the end of your turn, it drops to 0 hit points."
]
},
{
"type": "entries",
"name": "Ruby Storm Stance (11th Level)",
"entries": [
"When you take the Dodge action, you can immediately use your bonus action and spend 1 tempo point to enter a time-slowing stance. Until the start of your next turn, you can't be knocked prone or moved, and whenever a creature within 5 feet of you makes an attack, you can immediately make a melee attack against it."
]
},
{
"type": "entries",
"name": "Trace (17th Level)",
"entries": [
"As an action, you can spend 4 tempo points to teleport up to 60 feet to an unoccupied space within reach of a target and make a single melee weapon attack against it. On a hit, these attacks deal an additional 2d8 force damage. You can do this up to 5 additional times as a part of the same action, so long as each target you attack is different."
]
}
]
}
]
},
{
"name": "Hero's Charge",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"The world is full of monsters and those that would exploit the weak. Hero's Charge disciples take it upon themselves to become symbols of hope by bringing down great threats for all to see. The techniques of this discipline focus on refining an indomitable will and bringing the mighty down.",
{
"type": "entries",
"name": "Ideal: Heroism",
"entries": [
"People deserve peace and happiness, and so you take it upon yourself to be a tool for their delivery. Overwhelming odds are a welcome challenge, for you must be a beacon of inspiration for as long as there is a soul left to be saved."
]
},
{
"type": "entries",
"name": "Signature Art: Symbol of Hope",
"entries": [
"While you can see at least one ally, and you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead.",
"Each time you use this feature beyond the first after a long rest, you gain a level of exhaustion. When you finish a long rest, all exhaustion levels gained this way goes away."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Topple (2nd Level)",
"entries": [
"You can forgo a melee weapon attack on your turn and spend at least 1 tempo point to attempt to topple a creature within reach. The target must make a Strength saving throw. On a failure, the target falls prone and takes 1d8 bludgeoning damage for each tempo point spent. If the target is Large or larger, it has disadvantage on this saving throw and instead take 1d10 bludgeoning damage for each tempo point spent."
]
},
{
"type": "entries",
"name": "Blinding Courage (5th Level)",
"entries": [
"Whenever a creature attempts to frighten you or a non-hostile creature within 10 feet of you, you can use your reaction and spend 3 tempo points to make it so every non-hostile creature within 10 feet of you can't be frightened until the start of your next turn."
]
},
{
"type": "entries",
"name": "Revolution (11th Level)",
"entries": [
"As an action, you can spend 3 tempo points and make a melee attack against every creature within 5 feet of you. If any of these creatures is Large or larger, it takes additional damage equal to your weapon's damage die."
]
},
{
"type": "entries",
"name": "Tyrant's Downfall (17th Level)",
"entries": [
"As an action, you can spend 5 tempo points to cause a giant glowing weapon to appear. This weapon crashes down in a 60 foot-tall, 10 foot radius cylinder centered on a point you can see within 60 feet of you. Any creature in the area must make a Charisma saving throw or take 5d12 radiant damage, or half of that damage on a success. If a creature is Large or larger, it takes an additional 2d12 damage."
]
}
]
}
]
},
{
"name": "Howling Gale",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"It is too often that people chain themselves to the earth and become prisoners of a life they never really enjoyed. Disciples of the Howling Gale put above all else the ability to decide for themselves their next path. Techniques of this discipline focus on being hard to reach and pushing back oppressive advances.",
{
"type": "entries",
"name": "Ideal: Freedom",
"entries": [
"Life is but a small breeze, fleeting upon the chaotic winds of the universe. Do not waste it carrying undue burdens that leave you crushed. Lift these burdens from yourself and those around you, and reflect on how much more joyous it is to live free."
]
},
{
"type": "entries",
"name": "Signature Art: Gale Surge",
"entries": [
"As a bonus action, you whip a wild gust around your body and briefly become as the wind. For the next minute, you have advantage on Dexterity saving throws, and whenever a creature misses you with an attack, you can move 5 feet without provoking opportunity attacks."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Driving Wind (2nd Level)",
"entries": [
"You can use your action and spend up to 5 tempo points to unleash a cone of rushing air from your weapon. The size of the cone is equal to 10 times the amount of tempo points you spent. Each creature in the cone must make a Strength saving throw or be pushed backwards until they reach an unoccupied space at the end of the cone."
]
},
{
"type": "entries",
"name": "Wind Scar (5th Level)",
"entries": [
"You can use your action and spend any amount of tempo points to swing your weapon and unleash a blade of air forward. Pick up to 3 creatures you can see within 60 feet of you. If you target more than one creature, each target must be within 5 feet of at least one other target, and none of them can have cover from you. Each of these targets must succeed on a Dexterity saving throw. On a failure, a creature takes 1d8 magical slashing damage for each point of tempo you spend, or half as much on a success."
]
},
{
"type": "entries",
"name": "The Wind That Walks (11th Level)",
"entries": [
"As a bonus action, you can spend 3 tempo points to become invisible and able to move through the space of any creature, as well as through 1 inch gaps without expending additional movement until the start of your next turn, or until you attack a creature or force it to make a saving throw."
]
},
{
"type": "entries",
"name": "Tranquil Windstorm (17th Level)",
"entries": [
"As a bonus action, you can spend 3 tempo points to create a 10 foot radius sphere of whirling air that follows you, which lasts until the end of your next turn. While within the sphere, creatures of your choice can ignore difficult terrain, and you can impose disadvantage on any ranged attack that targets a creature inside of the sphere. Additionally, if a creature starts its turn inside the sphere, you can increase its speed by 10 until the end of its turn."
]
}
]
}
]
},
{
"name": "Mercurial Wolf",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"How can one truly claim to be living when they adhere to the constraining lines of conventional thought? Disciples of the Mercurial Wolf discipline value spontaneity and change, and as such their techniques involve creating complicated and chaotic situations on the battlefield through illusions and trickery.",
{
"type": "entries",
"name": "Ideal: Chaos",
"entries": [
"Stagnation is the enemy of growth, so it is up to you to make sure that the world is constantly changing. Adapt to the situations you bring about, and through that act you will find completeness."
]
},
{
"type": "entries",
"name": "Signature Art: Quicksilver Pack",
"entries": [
"As an action, you create an illusory duplicate of yourself. This effect lasts 1 minute and requires you maintain concentration as if concentrating on a spell. The illusion appears in an unoccupied space within 10 feet of you that you can see. A duplicate has the same AC as you and disappears whenever it takes any damage from an attack, spell or magical effect. As a bonus action on your turn, you can move any one duplicate created by this art up to 30 feet to a space you can see. A duplicate can only fly this way if you also have a fly speed. Alternatively, you can use your bonus action to destroy a duplicate and teleport to its space, provided you can see the duplicate.",
"The amount of duplicates you can make with this ability increases to 2 at 5th level, 3 at 11th level, and 4 at 17th level."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Mirror Step (2nd Level)",
"entries": [
"You twirl the world about a creature, disorienting its perception of your position. When a creature moves within 5 feet of you, you can use your reaction and spend 1 tempo point to force that creature to make an Intelligence saving throw. On a failure, you can teleport to any space within 5 feet of the creature, and the next attack it makes against you before the end of the turn is made at disadvantage."
]
},
{
"type": "entries",
"name": "Inversion (5th Level)",
"entries": [
"As an action, you can spend 3 tempo points to force a creature you can see within 30 feet of you to make a Charisma saving throw. On a failure, you teleport into a space that creature occupies and cause that creature to teleport into your space. If there is no room for the you or the creature where the other stands, this technique fails."
]
},
{
"type": "entries",
"name": "Altered Perspective (11th Level)",
"entries": [
"When a hostile creature misses you with a melee attack, you can use your reaction and spend 3 tempo points to force that creature to repeat the same attack against another creature (other than itself) of your choice."
]
},
{
"type": "entries",
"name": "Shifting Sides (17th Level)",
"entries": [
"As a bonus action, you can spend 4 tempo points and attempt to alter a creature's perception of the battlefield. A creature of your choice within 30 feet of your must make an Intelligence saving throw to see through the illusion you foist on it. On a failed saving throw, the creature can't make reactions until the start of its next turn, and immediately makes a melee weapon attack against a creature of your choice within its reach."
]
}
]
}
]
},
{
"name": "Raven's Gaze",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"An eye for an eye leaves the world blind, but no wrong ever truly escapes the raven's gaze. Disciples of the Raven's Gaze discipline allow no sleight against them or their compatriots to go unpunished. Techniques of the Raven's Gaze revolve around instilling fear in your assailants before bringing them down.",
{
"type": "entries",
"name": "Ideal: Revenge",
"entries": [
"You have been wronged. If you haven't been, you will be. It is your charge to turn your ire upon those who sought to bring you down, and take from them that which you are owed. They tried to bring you to your knees, but now you are hoisted up by the black wings of vengeance."
]
},
{
"type": "entries",
"name": "Signature Art: Will of the Conspiracy.",
"entries": [
"As a bonus action, you can force a creature you can see to make a Wisdom saving throw. On a failure, the target's vision and hearing is overtaken by a swarm of ravens. Until the end of your next turn, it is deafened and perceives the area beyond a 10 foot radius around it to be magical darkness. If you start your turn outside of this radius, you can use your bonus action to teleport into an unoccupied space inside of it. If a target succeeds on its saving throw, the target has no hint that you tried to use this art on it."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Gaze of the Flock (2nd Level)",
"entries": [
"When a creature you can see within 30 feet of you damages you or forces you to make a saving throw, you can use your reaction and spend 2 tempo points to force it to make a Wisdom saving throw. On a failure, it is frightened of you until the end of your next turn. At the end of each of your turns while a creature is frightened of you in this way, you can spend 1 tempo point to force the creature to make another Wisdom saving throw. On a failure, the creature remains frightened of you until the end of your next turn."
]
},
{
"type": "entries",
"name": "Unkindness In Turn (5th Level)",
"entries": [
"You can spend your bonus action and 2 tempo points to teleport to a creature within 30 feet of you that is frightened of you. That creature must make a Wisdom saving throw. On a failure, it becomes paralyzed with fear until the start of their turn."
]
},
{
"type": "entries",
"name": "Futility (11th Level)",
"entries": [
"Once on each of your turns when you hit a creature with a melee weapon attack, you can spend 1 tempo point and have it make a Wisdom saving throw. On a failure, its speed is halved, and it has disadvantage on saves against becoming frightened until the end of their next turn."
]
},
{
"type": "entries",
"name": "Vengeance of the Swarm (17th Level)",
"entries": [
"A black mist of ethereal ravens surges from you to enact your revenge. When a creature damages you, you can use your reaction and spend 4 tempo points to cause that creature to lose hit points equal to the amount of damage you took (maximum of 40 damage)."
]
}
]
}
]
},
{
"name": "Stone Dragon",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"Like the plates that shift about the world's surface, you leave a lasting impact on every person you encounter. Followers of the Stone Dragon discipline put great thought that each spoken word and each action belonging to them is not glib. Techniques of the Stone Dragon disciple focus on using the earth to keep you centered, and landing decisive blows.",
{
"type": "entries",
"name": "Ideal: Stoicism",
"entries": [
"Expression is a powerful thing that is best not used frivolously. Speak and act when your words and actions further your path, and make sure each word strikes with the impact of a falling boulder."
]
},
{
"type": "entries",
"name": "Signature Art: Dragon Sentinel",
"entries": [
"As an action, you can summon a Medium dragon statue in an unoccupied space within 30 feet of you, lasting for 1 minute or until you lose concentration (as if you were concentrating on a spell). The dragon has an AC equal to 13 + your Wisdom modifier, immunity to poison and psychic damage, and an amount of hit points equal to 5 + twice your disciple level.",
"As part of the action used to summon this statue, or as a reaction whenever a creature moves within 5 feet of it or moves out of its reach, you can cause it to make a special melee spell attack against a target within 5 feet of it. The dragon adds your proficiency bonus and Wisdom modifier to its attack rolls, and it deals 2d6 magical piercing damage on a hit. Any creature struck by the statue becomes wreathed in stone chains, causing its speed to be reduced by half until the start of their next turn.",
"The dragon's damage increases by 1d6 at 5th level (3d6), and again at 11th (4d6) and 17th (5d6) levels."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Roots of the Earth (2nd Level)",
"entries": [
"When an effect would knock you prone or move you against your will, you can spend 1 tempo point to hook into the earth. Until the start of your next turn, you can't be be knocked prone or moved against your will, including against the original effect."
]
},
{
"type": "entries",
"name": "Mountain Hammer (5th Level)",
"entries": [
"When you hit a creature with a melee weapon attack, you can spend 2 tempo points to embed it into a fissure below it. The target must make a Strength saving throw. On a failure, the target is knocked prone. If the target is already prone, it is instead knocked prone and restrained until the end of its next turn."
]
},
{
"type": "entries",
"name": "Earthbound (11th Level)",
"entries": [
"As an action, you can spend 3 tempo points to petrify yourself until the start of your next turn. While petrified in this way, any damage you take is halved, and your form can't be changed.",
"Additionally, the earth around your feet attempts to encase those around you. Each creature within 15 feet of you must make a Dexterity saving throw. On a failure, that creature is restrained until the end of your next turn."
]
},
{
"type": "entries",
"name": "Breath of Ages (17th Level)",
"entries": [
"As an action, you can spend 5 tempo points to exhale a eroding mist that originates from either you or your Dragon Sentinel. All creatures in a 60-foot cone, which spreads around corners, must make a Constitution saving throw. On a failure, the creature's body becomes heavy and sluggish until the end of your next turn. For the duration, the creature's speed is halved, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn.",
"Once per turn, when you hit a sluggish creature with a melee weapon attack, you can force it to make a Constitution saving throw. On a failure, the target becomes petrified until the end of your next turn."
]
}
]
}
]
},
{
"name": "Titan Fury",
"source": "InfKore:Disciple",
"featureType": [
"Disc:D"
],
"entries": [
"The path of the warrior is full of rivals and obstacles. Followers of the Titan Fury discipline make it their goal to shatter the competition and make it clear that their power is absolute. Techniques of the Titan Fury discipline focus on demolishing the weak and cowardly and ripping through attempts at stopping your advance.",
{
"type": "entries",
"name": "Ideal: Power",
"entries": [
"It is not enough to merely defeat your enemies; you must overcome them and demonstrate the gap in your abilities. You must prove to yourself and to the world that your might is unrivaled."
]
},
{
"type": "entries",
"name": "Signature Art: Blood of the Ancients.",
"entries": [
"As a bonus action, you can bolster your form. You gain temporary hit points equal to your Wisdom modifier + half your disciple level, which last for 1 minute (rounded up, minimum",
"For as long as you have these temporary hit points, whenever you make a Strength check or saving throw and you roll a number below half your Wisdom score on a d20, you can treat the roll as half your Wisdom score.",
"Starting at 5th level, for as long as you have these temporary hit points, your size increases to Large if you are not already Large or bigger. This means that your size doubles in all dimensions, and your weight is multiplied by eight. Your equipment grows to match your new size. If there isn't enough room for you to double your size, you attain the maximum possible size in the space available."
]
},
{
"type": "entries",
"name": "Techniques",
"entries": [
{
"type": "entries",
"name": "Power Overwhelming (2nd Level)",
"entries": [
"When you hit a target with a melee weapon attack, you can use your bonus action and spend up to 5 tempo points. The target is pushed backwards 5 feet for every point of tempo you spent.",
"If this movement would force the target to impact a creature, object, or structure, then it and whatever it collided with takes 1d6 bludgeoning damage for every 5 feet of forced movement remaining (minimum of no damage)."
]
},
{
"type": "entries",
"name": "Cull the Meek (5th Level)",
"entries": [
"Those who seek to mar you without facing you deserve a swift punishment. When a creature you cannot see hits you or a creature hits you with a ranged attack, you can use your reaction and spend 3 tempo points to reduce that damage by 1d10 + your Wisdom modifier, and then force that creature to succeed on a Wisdom saving throw or take psychic damage equal to the amount you reduced."
]
},
{
"type": "entries",
"name": "Titan's Will (11th Level)",
"entries": [
"At the start of your turn, you can spend 4 tempo points to remove one of the following conditions from yourself: blinded, charmed, deafened, frightened, incapacitated, paralyzed, poisoned, or stunned."
]
},
{
"type": "entries",
"name": "Arduous Wrath (17th Level)",
"entries": [
"As an action, you can spend 4 tempo points and make up to 3 weapon attacks against one creature. If at least two of these attacks hit, you can make 2 additional attacks as a part of the same action."
]
}
]
}
]
}
],
"classFeature": [
{
"name": "Sublime Discipline",
"source": "InfKore:Disciple",
"className": "Disciple",
"classSource": "InfKore:Disciple",
"level": 1,
"entries": [
"A disicple's path begins with learning Sublime Disciplines. A sublime discipline is a kind of mystical martial art. Each discipline is centered on an ideal for the disciple to understand and internalize.",
"At 1st level, choose one {@filter sublime discipline|optionalfeatures|source=null|feature type=Disc:D}, detailed at the end of the class description. When you gain certain disciple levels, you gain knowledge of new disciplines, as shown on the Disciplines Known column of the Disciple table.",
"Additionally, when you gain a level in this class, you can choose one of the disciplines you know and replace it with another discipline.",
{
"type": "entries",
"name": "Signature Art",
"entries": [
"Each sublime discipline has an associated Signature Art, the foundational ability of the discipline. You can use this feature to invoke the effects of the Signature Art of a discipline you know. You can only have the effects of one Signature Art active at a time.",
"You can use this feature a number of times equal to your Wisdom modifier (a minimum of once). You regain all expended uses when you finish a long rest."
]
},
{
"type": "entries",
"name": "Tempo Techniques",
"entries": [
"Each discipline has a list of techniques─its discipline techniques─that you gain at the disciple levels noted in the discipline's description. These techniques require you to spend tempo points to use which you gain at 2nd level.",
"Some techniques modify a specific attack. You can only use one such technique per attack."
]
},
{
"type": "entries",
"name": "Tempo Ability",
"entries": [
"Your ability to utilize tempo is tied your intuition and ability to perceive the ripples of magic around you; as such, Wisdom is the key ability for disciples. Some of your discipline features require for your target to make a saving throw to resist the feature's effects.",
{
"name": "Saving Throws",
"entries": [
"The saving throw DC is calculated as follows:",
{
"type": "abilityDc",
"name": "Tempo",
"attributes": [
"wis"
]
}
]
}
]
}
]
},
{
"name": "Martial Intuition",
"source": "InfKore:Disciple",
"className": "Disciple",
"classSource": "InfKore:Disciple",
"level": 1,
"entries": [
"Your opponents' blows radiate a certain rhythm that your body has learned to read. If a creature attacks you or forces you to make a saving throw, your DM tells you one one of the following things about its capabilities (your choice):",
{
"type": "list",
"items": [
"If one of its ability scores of your choice is higher than, lower than, or equal to your same ability score.",
"If any of its speeds is higher than, lower than, or equal to a single speed of yours (your choice).",
"If their statistics are being altered by a spell or magical effect.",
"If they are proficient in at least one {@filter martial weapon|items|source=phb|category=basic|type=martial weapon}."
]
}
]
},
{
"name": "Tempo",
"source": "InfKore:Disciple",
"className": "Disciple",
"classSource": "InfKore:Disciple",
"level": 2,
"entries": [
"Starting at 2nd level, you gain the ability to perceive and utilize the power in ambient ripples of magic, called tempo. Your access to this mystical energy is represented by a number of tempo points. Your disciple level determines the number of points you have, as shown in the Tempo Points column of the Disciple table.",
"You can spend these points to fuel various tempo techniques granted by your disciplines. When you spend a tempo point, it becomes unavailable. When you take the Dodge action, you can use your bonus action to focus and regain any expended tempo points."
]
},
{
"name": "Fighting Style",
"source": "InfKore:Disciple",
"className": "Disciple",
"classSource": "InfKore:Disciple",
"level": 2,
"entries": [
"You adopt a particular style of fighting as your specialty. Choose one of the {@filter following options|optionalfeatures|source=null|feature type=FS:F}. You can't take the same Fighting Style option more than once, even if you get to choose again.",
{
"type": "options",
"entries": [
{
"type": "entries",
"name": "Dueling",
"entries": [
"When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon."
]
},
{
"type": "entries",
"name": "Great Weapon Fighting",
"entries": [
"When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit."
]
},
{
"type": "entries",
"name": "Protection",
"entries": [
"When a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield."
]
},
{
"type": "entries",
"name": "Two-Weapon Fighting",
"entries": [
"When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack."
]
}
]
}
]
},
{
"name": "Sublime Journey",
"source": "InfKore:Disciple",
"className": "Disciple",
"classSource": "InfKore:Disciple",
"level": 3,