forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChronicleOfHeroes; The Weaveknight.json
2548 lines (2548 loc) · 83.7 KB
/
ChronicleOfHeroes; The Weaveknight.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_meta": {
"sources": [
{
"json": "Weaveknight",
"abbreviation": "TWK",
"full": "The Weaveknight",
"authors": [
"ChronicleOfHeroes"
],
"convertedBy": [
"Lxran#2292"
],
"version": "1.0",
"color": "53b6bb",
"url": "https://drive.google.com/file/d/11adEv5a5TPDvw9yFomovFpLx_VaV9tqj/view"
}
],
"optionalFeatureTypes": {
"FS:WK": "Fighting Style; Weaveknight",
"WK:SA": "Weaveknight; Secret Arts"
},
"dateAdded": 1599371925,
"dateLastModified": 1600335296
},
"class": [
{
"name": "Weaveknight",
"source": "Weaveknight",
"page": 2,
"hd": {
"faces": 8,
"number": 1
},
"proficiency": [
"con",
"int"
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"acrobatics",
"arcana",
"athletics",
"history",
"investigation",
"nature",
"perception",
"religion"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) {@item scale mail|PHB} or (b) {@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}or (c) a {@item longbow|phb} and a {@item quiver|phb} of {@item arrows (20)|phb|20 arrows}",
"(a) a {@item scholar's pack|phb} or (b) an {@item explorer's pack|phb}",
"(a) a {@item component pouch|phb} or (b) an {@item arcane focus|phb}"
],
"goldAlternative": "{@dice 5d4 × 10|5d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"scale mail|pbh"
],
"b": [
"leather armor|phb"
]
},
{
"a": [
{
"equipmentType": "weaponMartial"
},
"shield|phb"
],
"b": [
{
"equipmentType": "weaponMartial",
"count": 2
}
],
"c": [
"longbow|phb",
"quiver|phb|",
"arrows(20)|phb"
]
},
{
"a": [
"scholar's pack|PHB"
],
"b": [
"explorer's pack|PHB"
]
},
{
"a": [
"component pouch|PHB"
],
"b": [
"arcane focus|phb"
]
}
]
},
"multiclassing": {
"requirements": {
"or": [
{
"str": 13,
"dex": 13
}
],
"int": 13
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
]
}
},
"spellcastingAbility": "int",
"casterProgression": "1/2",
"classTableGroups": [
{
"colLabels": [
"Secret Arts",
"Spells Known"
],
"rows": [
[
0,
2
],
[
3,
2
],
[
3,
3
],
[
3,
3
],
[
3,
4
],
[
4,
4
],
[
4,
5
],
[
4,
5
],
[
4,
6
],
[
5,
6
],
[
5,
7
],
[
5,
7
],
[
5,
8
],
[
6,
8
],
[
6,
9
],
[
6,
9
],
[
7,
10
],
[
7,
10
],
[
8,
11
],
[
8,
11
]
]
},
{
"title": "Spell Slots per Spell Level",
"colLabels": [
"{@filter 1st|spells|level=1|class=Weaveknight}",
"{@filter 2nd|spells|level=2|class=Weaveknight}",
"{@filter 3rd|spells|level=3|class=Weaveknight}",
"{@filter 4th|spells|level=4|class=Weaveknight}",
"{@filter 5th|spells|level=5|class=Weaveknight}"
],
"rows": [
[
0,
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": [
"Spellcasting|Weaveknight|Weaveknight|1",
"Combat Caster|Weaveknight|Weaveknight|1",
"Arcane Strike|Weaveknight|Weaveknight|2",
"Fighting Style|Weaveknight|Weaveknight|2",
"Secret Arts|Weaveknight|Weaveknight|2",
{
"classFeature": "Weaveknight Discipline|Weaveknight|Weaveknight|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Weaveknight|Weaveknight|4",
"Extra Attack|Weaveknight|Weaveknight|5",
"Quick Cast (1/rest)|Weaveknight|Weaveknight|6",
{
"classFeature": "Discipline Feature|Weaveknight|Weaveknight|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Weaveknight|Weaveknight|8",
"Student of Magic and War|Weaveknight|Weaveknight|10",
{
"classFeature": "Discipline Feature|Weaveknight|Weaveknight|11",
"gainSubclassFeature": true
},
"Ability Score Improvement|Weaveknight|Weaveknight|12",
"Quick Cast (2/rest)|Weaveknight|Weaveknight|14",
"Versatile Spellcaster|Weaveknight|Weaveknight|14",
{
"classFeature": "Discipline Feature|Weaveknight|Weaveknight|15",
"gainSubclassFeature": true
},
"Ability Score Improvement|Weaveknight|Weaveknight|16",
"True War Magic|Weaveknight|Weaveknight|18",
"Ability Score Improvement|Weaveknight|Weaveknight|19",
{
"classFeature": "Discipline Feature|Weaveknight|Weaveknight|20",
"gainSubclassFeature": true
}
],
"subclassTitle": "Weaveknight Discipline",
"classSpells": [
{
"name": "Absorb Elements",
"source": "XGE"
},
"Burning Hands",
"Chromatic Orb",
"Detect Magic",
"Expeditious Retreat",
"Faerie Fire",
"Feather Fall",
{
"name": "Ice Knife",
"source": "XGE"
},
"Identify",
"Jump",
"Longstrider",
"Magic Missile",
"Protection from Evil and Good",
"Shield",
"Sleep",
"Thunderwave",
"Witch Bolt",
{
"name": "Zephyr Strike",
"source": "XGE"
},
{
"name": "Aganazzar's Scorcher",
"source": "XGE"
},
"Blindness/Deafness",
"Darkness",
"Darkvision",
"Enlarge/Reduce",
"Enhance Ability",
"Hold Person",
"Invisibility",
"Levitate",
"Locate Object",
"Melf's Acid Arrow",
"Mirror Image",
"Misty Step",
"Scorching Ray",
"See Invisibility",
"Spider Climb",
"Web",
"Counterspell",
"Dispel Magic",
"Elemental Weapon",
"Fear",
"Fireball",
"Fly",
"Glyph of Warding",
"Haste",
"Lightning Bolt",
"Magic Circle",
"Protection from Energy",
"Sending",
"Slow",
"Vampiric Touch",
"Banishment",
"Blight",
"Dimension Door",
{
"name": "Elemental Bane",
"source": "XGE"
},
"Fire Shield",
"Freedom of Movement",
"Greater Invisibility",
"Ice Storm",
"Locate Creature",
"Polymorph",
"Stoneskin",
{
"name": "Vitriolic Sphere",
"source": "XGE"
},
"Bigby's Hand",
"Cone of Cold",
"Dominate Person",
"Geas",
"Hold Monster",
{
"name": "Immolation",
"source": "XGE"
},
"Scrying",
"Teleportation Circle",
"Wall of Force"
],
"fluff": [
{
"name": "The Weaveknight",
"type": "section",
"entries": [
"Surrounded by undead creations, an elf clad in plate armor that reflects the crimson flames that frame the walls of the unholy sanctum readies her mighty blade, eyeing the evil necromancer about to complete the ritual. As the creatures charge her, she vanishes in a flash of blue light and reappears above the mage, weapon bathed in arcane energy, felling her foe with a mighty warcry.",
"A dragonborn dressed in silver and blue robes waves his torch, shedding light in the ancient texts carved upon the ruin's walls. As he begins to decrypt the message, the growling of two large beasts emerging from the shadows draws his attention. Smiling, the scholar draws his longsword and assumes a martial stance, sword held high above his head and crackling with lighting.",
"A human carefuly streches the string of her bow, waiting for her allies to give her an opening against the demon. As soon as she sees it, she releases the arrow, muttering incantations and imbuing it with power. As the arrow travels, it is engulfed in a brilliant light, and the demon roars loudly before it explodes in a blast of radiance.",
"Despite their unique styles, all weaveknights expertly weave powerful spells and strikes alike in a deadly combination. Whether lone warriors defending the realms, teachers and scholars, or adventurers seeking new wonders, weaveknights are united by the dedication in their art and their pursuit of excellence.",
{
"name": "Knowledge is Power",
"type": "entries",
"entries": [
"A weaveknight understands the beauty hidden in unearthed secrets of a world filled with magic and wonder, as well as the malicious ways in which such powers can be wielded. Weaving spells and using secret esoteric techniques varying amongst each of their orders, all weaveknights are students of both war and magic, creating unique fighting styles and honing their skills in the pursuit of greater knowledge. Discipline is a core characteristic of a weaveknight, forged into their hearts during years of intense training, but kindness and empathy are also encouraged for they are the only way these magical knights can remember the worth of caring for others and stay true to their cause.",
"Regardless of their differences, weaveknights defend the innocent from rogue spellcasters and magical threats, bound by a sense of duty towards society. While many weaveknights live a life of solitude and dedicated study, striving to uncover ancient relics and texts, there are those that seek to connect with and teach others as they consider true knowledge a gift to be shared with the world."
]
},
{
"name": "Creating a Weaveknight",
"type": "entries",
"entries": [
"A weaveknight's life is almost synonymous with adventure. There is always some piece of lore or knowledge long forgotten in the world, waiting to be unveiled by a weaveknight. Furthermore, a weaveknight's character background should incorporate the reasons they decided to pursue the art, as well as their various personal goals that drove them to endure the harsh training. How did you first realize your potential for the arcane arts? Were you a soldier with untapped magical potential, discovered by another weaveknight? Perhaps one of your ancestors was a member of a weaveknight order and you found their bonded weapon and books.",
"What weaveknight order did you train under? Who was your mentor? What are the connections you made with other knights and what is the specific goal of your order? Were you groomed to be in the frontlines against abusers of magic, to become a teacher yourself and enlighten the future generations, or perhaps to undergo secret missions to recover lost artifacts? What secret arts and techniques did you decide to dedicate yourself to, as you polished your own unique way of fighting?",
"Through their training, weaveknights understand that there is rarely an objective truth except knowledge itself. Thus, even if their disciplined ways may tend to lawful alignments, most weaveknights embrace neutrality."
]
},
{
"name": "Quick Build",
"type": "entries",
"entries": [
"You can make a weaveknight quickly by following these suggestions. First, your highest ability score should be Strength or Dexterity, depending on your combat style and tactics. Your next highest ability score should be Intelligence, as it determinces the power of your spellcasting and various magical abilities. Second, choose the {@background sage} or {@background soldier} background."
]
}
]
}
],
"spellsKnownProgression": [
2,
2,
3,
3,
4,
4,
5,
5,
6,
6,
7,
7,
8,
8,
9,
9,
10,
10,
11,
11
]
}
],
"classFeature": [
{
"name": "Spellcasting",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 4,
"level": 1,
"entries": [
"You have split your time learning to hone your martial prowess as well as your arcane ability. You focused your study of magic on only those spells best suited to enhance your abilities when wading into combat. As a result, you learn a comparatively small number of spells committing them to memory instead of keeping them in a spellbook.",
{
"name": "Spell Slots",
"type": "entries",
"entries": [
"The Weaveknight table shows you how many spell slots you have to cast your spells of 1st level and higher. To cast one of these 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."
]
},
{
"name": "Spells Known of 1st Level and Higher",
"type": "entries",
"entries": [
"You know two 1st-level weaveknight spells of your choice from the {@filter weaveknight spell list|spells|class=Weaveknight (TWK)}.",
"The Spells Known column of the Weaveknight table shows when you learn more weaveknight spells of 1st level or higher. Additionaly, when you gain a level in this class, you can choose one of the weaveknight spells you know and replace it with another spell from the weaveknight spell list, which The new spell must be of a level for which you have spell slots."
]
},
{
"name": "Spellcasting Ability",
"type": "entries",
"entries": [
"Intelligence is your spellcasting ability for your weaveknight spells, since you learn your spells through study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a weaveknight spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"int"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"int"
]
}
]
},
{
"name": "Spellcasting Focus",
"type": "entries",
"entries": [
"You can use an arcane focus as your spellcasting focus for your weaveknight spells."
]
}
]
},
{
"name": "Combat Caster",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 4,
"level": 1,
"entries": [
"Your training with sword and spell alike has granted you the experience to expertly combine the two, even in the midst of combat. You can perform the somatic components of spells even when you have weapons or a shield in one or both hands.",
"Additionaly, at the beginning of a long rest, you can initiate a 10 minute ritual with a weapon. After the ritual is completed, you can use that weapon as an arcane focus. If it is in the same plane of existence, you can summon that weapon as a bonus action on your turn, causing it to teleport instantly to your hand.",
"Only one weapon can benefit from this feature at a time. If you attempt this ritual with a second weapon, the first one loses the benefits of this feature."
]
},
{
"name": "Arcane Strike",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 4,
"level": 2,
"entries": [
"Starting at 2nd level, you learn how to imbue your weapons with arcane power. Once per turn, when you hit a creature with a weapon attack, you can expend one spell slot to add an additional effect to your attack. Choose one of the following effects, and the target is subjected to it.",
{
"type": "entries",
"entries": [
{
"type": "options",
"count": 1,
"entries": [
{
"name": "Dispelling Spellstrike",
"type": "entries",
"entries": [
"You cut through magic. Choose a spell affecting the target that you are aware of. If it is of a level equal to or lower than the level of the spell slot you expended, it ends."
]
},
{
"name": "Mystic Spellstrike",
"type": "entries",
"entries": [
"Immense arcane force envelops your strike. The target takes force damage, in addition to the weapon's damage. The extra damage is equal to your weaveknight level, plus {@dice 1d6} per level of the spell slot."
]
}
]
}
]
}
]
},
{
"name": "Fighting Style",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 2,
"entries": [
"At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.",
{
"type": "options",
"count": 1,
"entries": [
{
"type": "refOptionalfeature",
"optionalfeature": "Arcane Warrior|Weaveknight"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Archery"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Defense"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Dueling"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Great Weapon Fighting"
}
]
}
]
},
{
"name": "Secret Arts",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 2,
"entries": [
"Dedicating yourself to the study of martial combat and arcane lore, you have unearthed knowledge about special techniques usable only by ones who have trained rigorously as weaveknights.",
"At 2nd level, you learn two {@filter secret arts|optionalfeatures|feature type=wk:sa} of your choice. Your secret arts options are detailed at the end of the class description. When you gain certain weaveknight levels, you gain additional secret arts of your choice, as shown in the Secret Arts column of the Weaveknight Table.",
"Additionally, when you gain a level in this class, you can choose one of the secret arts you know and replace it with another secret art that you could learn at that level.",
"Some secret arts are combat stances, amplifying specific ways of fighting and granting additional options to your Arcane Strike feature. You can enter a stance that you know when you roll initiative or as a bonus action, gaining its benefits for 1 minute. You can only maintain one stance at a time, and you lose any of its benefits while {@condition incapacitated} or if you enter a new stance. After entering a stance, you can't enter the same stance again until you finish a short or long rest.",
"You can only learn a secret art once. If you replace a secret art with another one, you can never learn that secret art again, even if you meet its prerequisites."
]
},
{
"name": "Weaveknight Discipline",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 3,
"entries": [
"At 3rd level, you choose a discipline that you strive to perfect. Choose between the Spellwarden, the Magehunter, the Initiate of Arcana Mystara, the Spellbow or the Magus, all described at the end of the class description. The archetype you choose grants you features at 3rd level and again at 7th, 11th, 15th and 20th level."
]
},
{
"name": "Ability Score Improvement",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"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": "Extra Attack",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 5,
"entries": [
"Beginning at 5th level, you can attack twice, instead of once, whenever you take the {@action Attack} action on your turn."
]
},
{
"name": "Quick Cast (1/rest)",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 6,
"level": 6,
"entries": [
"At 6th level, you gain the ability to increase the speed with which you weave spells. When you cast a spell with a casting time of 1 action, you can use your Quick Cast to change the casting time to 1 bonus action for this casting. You must then finish a short or long rest to use your Quick Cast again.",
"Beginning at 14th level, you can use your Quick Cast twice between rests."
]
},
{
"name": "Discipline Feature",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 7,
"entries": [
"At 7th level, you gain a feature granted by your Weaveknight Discipline."
]
},
{
"name": "Ability Score Improvement",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"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": "Student of Magic and War",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 6,
"level": 10,
"entries": [
"At 10th level, you have honed the craft of masterfully weaving spells even amidst the most dire of situations, steeling your focus. When you fail a Constitution saving throw that you make to maintain your concentration on a spell when you take damage, you can use your reaction to reroll the save. If you do so, you must use the new roll.",
"You can use this feature a number of times equal to your Intelligence modifier (minimum of once). You regain all expended uses of this feature when you finish a long rest."
]
},
{
"name": "Discipline Feature",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 11,
"entries": [
"At 11th level, you gain a feature granted by your Weaveknight Discipline."
]
},
{
"name": "Ability Score Improvement",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"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": "Quick Cast (2/rest)",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 6,
"level": 14,
"entries": [
"Beginning at 14th level, you can use your Quick Cast feature twice between rests."
]
},
{
"name": "Versatile Spellcaster",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 6,
"level": 14,
"entries": [
"At 14th level, your grasp over magic allows you to manipulate the arcane energies to your will depending on your needs. As a bonus action you can expend 2 spell slots of the same level to create 1 spell slot of one level higher, or expend a higher level spell slot to create 2 spell slots of 1 level lower than the one expended.",
"For example, you can expend two 1-st level spell slots to create one 2nd-level spell slot or one 2nd-level spell slot to create two 1st-level spell slots. You can create or expend spell slots of a level no higher than 5th with this feature.",
"Any spell slots you create with this feature vanish when you finish a long rest."
]
},
{
"name": "Discipline Feature",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 15,
"entries": [
"At 15th level, you gain a feature granted by your Weaveknight Discipline."
]
},
{
"name": "Ability Score Improvement",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"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": "True War Magic",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 18,
"entries": [
"At 18th level, you have mastered the art of weaving spells while performing your deadly martial strikes. When you take the {@action Attack} action on your turn, you can forgo one of your attacks and cast a spell with a casting time of 1 action in its place."
]
},
{
"name": "Ability Score Improvement",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"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": "Discipline Feature",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"page": 5,
"level": 20,
"entries": [
"At 20th level, you gain a feature granted by your Weaveknight Discipline."
]
}
],
"subclassFeature": [
{
"name": "The Magus",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"subclassSource": "Weaveknight",
"subclassShortName": "Magus",
"page": 7,
"level": 3,
"entries": [
"The discipline of the Magus, perhaps the most knighlty order of the weaveknights, is a path of flashing steel and arcane might. Fit for those who wish to fight in the frontlines with bravery, these weaveknights teleport around the battlefield and channel magic to devastate their enemies in fearsome shows of superiority. Never one to back down from a challenge, a Magus pursuits his goals in the most direct way: cut down anything that stands in between.",
{
"type": "refSubclassFeature",
"subclassFeature": "Magus Magic|Weaveknight|Weaveknight|Magus|Weaveknight|3"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Armored Mage|Weaveknight|Weaveknight|Magus|Weaveknight|3"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Arcane Surge|Weaveknight|Weaveknight|Magus|Weaveknight|3"
}
]
},
{
"name": "Magus Magic",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",
"subclassSource": "Weaveknight",
"subclassShortName": "Magus",
"page": 7,
"level": 3,
"header": 1,
"entries": [
"You learn an additional spell when you reach certain levels in this class, as shown in the Magus Spells table. The spell counts as a weaveknight spell for you, but it doesn't count against the number of weaveknight spells you know.",
{
"type": "table",
"caption": "Magus Spells",
"colLabels": [
"Weaveknight Level",
"Spells"
],
"colStyles": [
"col-3 text-center",
"col-9"
],
"rows": [
[
"3rd",
"{@spell heroism}"
],
[
"5th",
"{@spell branding smite}"
],
[
"9th",
"{@spell haste}"
],
[
"13th",
"{@spell blink}"
],
[
"17th",
"{@spell banishing smite}"
]
]
}
]
},
{
"name": "Armored Mage",
"source": "Weaveknight",
"className": "Weaveknight",
"classSource": "Weaveknight",