forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Troubadore; Runeblade.json
1558 lines (1558 loc) · 44.9 KB
/
Troubadore; Runeblade.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": "TheRuneblade",
"abbreviation": "TTR",
"full": "Troubadore's Runeblade",
"authors": [
"Troubadore"
],
"convertedBy": [
"Troubadore#6995"
],
"version": "0.06",
"url": "https://drive.google.com/file/d/1hxWCGTFhnz7KVddgBh76T2rQ922mQjKD/view?usp=sharing",
"targetSchema": "1.0.0",
"color": "#03fc94"
}
],
"dateAdded": 1587779972,
"dateLastModified": 1587834735
},
"class": [
{
"name": "Runeblade",
"source": "TheRuneblade",
"hd": {
"number": 1,
"faces": 8
},
"proficiency": [
"con",
"int"
],
"classTableGroups": [
{
"colLabels": [
"{@filter Cantrips Known|spells|level=0|class=Runeblade (TTR)}",
"{@filter Spells Known|spells|class=Runeblade (TTR)}"
],
"rows": [
[
0,
0
],
[
2,
2
],
[
2,
3
],
[
2,
3
],
[
2,
4
],
[
2,
4
],
[
2,
5
],
[
2,
5
],
[
3,
6
],
[
3,
6
],
[
3,
7
],
[
3,
7
],
[
3,
8
],
[
4,
8
],
[
4,
9
],
[
4,
9
],
[
4,
10
],
[
4,
10
],
[
4,
11
],
[
4,
11
]
]
},
{
"title": "Spell Slots per Spell Level",
"colLabels": [
"{@filter 1st|spells|level=1|class=Runeblade (TTR)}",
"{@filter 2nd|spells|level=2|class=Runeblade (TTR)}",
"{@filter 3rd|spells|level=3|class=Runeblade (TTR)}",
"{@filter 4th|spells|level=4|class=Runeblade (TTR)}",
"{@filter 5th|spells|level=5|class=Runeblade (TTR)}"
],
"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
]
]
}
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"heavy",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"count": 2,
"from": [
"Acrobatics",
"Arcana",
"Athletics",
"History",
"Intimidation",
"Investigation",
"Perception",
"Persuasion"
]
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) {@item chain mail|phb} or (b) {@item leather armor|phb}",
"(a) A {@filter martial melee weapon|items|source=phb|category=basic|type=martial weapon;melee weapon=sand} and a {@item shield|phb} or (b) two {@filter simple|items|source=phb|category=basic|type=simple weapon;melee weapon=sand} or {@filter martial melee weapons|items|source=phb|category=basic|type=martial weapon;melee weapon=sand}",
"(a) a {@item dungeoneer's pack|phb} or (b) an {@item explorer's pack|phb}",
"(a) Any {@filter ranged weapon|items|source=phb|category=basic|type=ranged weapon} and a container with 20 pieces of ammunition"
],
"goldAlternative": "{@dice 5d4×10|5d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"chain mail|phb"
],
"b": [
"leather armor|phb"
]
},
{
"a": [
{
"equipmentType": "weaponMartialMelee"
},
"shield|phb"
],
"b": [
{
"equipmentType": "weaponMartialMelee",
"quantity": 2
}
]
},
{
"a": [
"dungeoneer's pack|phb"
],
"b": [
"explorer's pack|phb"
]
},
{
"a": [
{
"equipmentType": "weaponRanged"
}
]
}
]
},
"multiclassing": {
"requirements": {
"or": [
{
"str": 13,
"dex": 13
}
],
"int": 13
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
]
}
},
"classFeatures": [
"Rune Weapon|Runeblade|TheRuneblade|1",
"Glyph of Protection|Runeblade|TheRuneblade|1",
"Fighting Style|Runeblade|TheRuneblade|2",
"Spellcasting|Runeblade|TheRuneblade|2",
"Arcane Strike|Runeblade|TheRuneblade|2",
{
"classFeature": "Runeblade Archetype|Runeblade|TheRuneblade|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Runeblade|TheRuneblade|4",
"Extra Attack|Runeblade|TheRuneblade|5",
"Glyph of Power|Runeblade|TheRuneblade|6",
{
"classFeature": "Runeblade Archetype Feature|Runeblade|TheRuneblade|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Runeblade|TheRuneblade|8",
"Glyph of Mist|Runeblade|TheRuneblade|10",
"Sword & Sorcery|Runeblade|TheRuneblade|11",
"Ability Score Improvement|Runeblade|TheRuneblade|12",
"Glyph of Focus|Runeblade|TheRuneblade|14",
{
"classFeature": "Runeblade Archetype Feature|Runeblade|TheRuneblade|15",
"gainSubclassFeature": true
},
"Ability Score Improvement|Runeblade|TheRuneblade|16",
"Glyph of Mastery|Runeblade|TheRuneblade|18",
"Ability Score Improvement|Runeblade|TheRuneblade|19",
{
"classFeature": "Runeblade Archetype Feature|Runeblade|TheRuneblade|20",
"gainSubclassFeature": true
}
],
"classSpells": [
"Blade Ward",
"Fire Bolt",
{
"name": "Frostbite",
"source": "XGE"
},
"Thorn Whip",
"resistance",
{
"name": "Absorb Elements",
"source": "XGE"
},
{
"name": "Booming Blade",
"source": "SCAG"
},
"Armor of Agathys",
"Command",
"Compelled Duel",
"Detect Magic",
"Divine Favor",
"Ray of Frost",
"Expeditious Retreat",
"Hail of Thorns",
{
"name": "Green-Flame Blade",
"source": "SCAG"
},
"True Strike",
"Shocking Grasp",
{
"name": "Lightning Lure",
"source": "SCAG"
},
{
"name": "Primal Savagery",
"source": "XGE"
},
{
"name": "Thunderclap",
"source": "XGE"
},
"Heroism",
"Identify",
"Jump",
"Longstrider",
"Mage Armor",
"Searing Smite",
"Shield",
"Shield of Faith",
"Thunderous Smite",
{
"name": "Sword Burst",
"source": "SCAG"
},
"Wrathful Smite",
{
"name": "Zephyr Strike",
"source": "XGE"
},
"Aid",
"Barkskin",
"Blur",
{
"name": "Warding Wind",
"source": "XGE"
},
"Branding Smite",
{
"name": "Earthbind",
"source": "XGE"
},
"Enhance Ability",
"Find Traps",
"Flame Blade",
"Magic Weapon",
"Misty Step",
"Warding Bond",
{
"name": "Shadow Blade",
"source": "XGE"
},
"Blinding Smite",
"Blink",
{
"name": "Catnap",
"source": "XGE"
},
"Conjure Barrage",
{
"name": "Thunder Step",
"source": "XGE"
},
"Dispel Magic",
"Elemental Weapon",
"Fireball",
{
"name": "Flame Arrows",
"source": "XGE"
},
"Glyph of Warding",
"Haste",
"Magic Circle",
"Protection From Energy",
"dimension door",
{
"name": "Elemental Bane",
"source": "XGE"
},
"Fire Shield",
"Freedom of Movement",
"Staggering Smite",
{
"name": "Shadow of Moil",
"source": "XGE"
},
"Stoneskin",
"Banishing Smite",
"Conjure Volley",
{
"name": "Far Step",
"source": "XGE"
},
{
"name": "Holy Weapon",
"source": "XGE"
},
{
"name": "Skill Empowerment",
"source": "XGE"
},
{
"name": "Steel Wind Strike",
"source": "XGE"
},
"Teleportation Circle"
],
"subclassTitle": "Runeblade Archetype",
"fluff": [
{
"entries": [
{
"type": "entries",
"name": "Masters of Sword & Sorcery",
"entries": [
"Where there are warriors, training their body and technique to reach the pinnacle of martial superiority, and great magicians, unlocking the potential of mystical powers, runeblades are those who aim to walk both paths.",
"Runeblades aim to blend magical ability and martial prowess, both complementing the other, creating one harmonious style of combat. A runeblade's power is incomplete without one or the other."
]
},
{
"type": "entries",
"name": "Glyphs of Magic",
"entries": [
"At the center of the runeblade's magical ability are mystical glyphs etched onto their signature weapon. These symbols can imbue the runeblade's arms with great power, at the same time letting the runeblade use the weapon to channel their own magic and perform spells.",
"As the runeblade becomes stronger, they may study, create, or discover more glyphs to etch onto their weapon, further enhancing their abilities."
]
}
],
"name": "The Runeblade",
"type": "section"
}
],
"cantripProgression": [
0,
2,
2,
2,
2,
2,
2,
2,
3,
3,
3,
3,
3,
4,
4,
4,
4,
4,
4,
4
],
"spellsKnownProgression": [
0,
2,
3,
3,
4,
4,
5,
5,
6,
6,
7,
7,
8,
8,
9,
9,
10,
10,
11,
11
]
}
],
"classFeature": [
{
"name": "Rune Weapon",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 1,
"entries": [
"You can inscribe runes to a weapon to release its latent magical power. The weapon must be a weapon you are proficient with. The inscription of the runes takes 1 hour to complete, and it can be done during a short or long rest.",
"Once the inscription is complete, the weapon becomes a rune weapon, and gains the following benefits:",
{
"type": "list",
"items": [
"The rune weapon becomes magical, if it isn't already.",
"If your rune weapon is on the same plane of existence, you can summon it as a bonus action on your turn, causing it to teleport instantly to your hand.",
"You can use your rune weapon as a spellcasting focus for your spells, and you can perform the somatic components of spells with your rune weapon instead of using a free hand."
]
},
"You can only have one rune weapon. If you attempt to perform the inscription on a second weapon, the magical inscripted runes of the first weapon fades."
]
},
{
"name": "Glyph of Protection",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 1,
"entries": [
"When you are hit by an attack or you fail a saving throw while holding your rune weapon, you can use your reaction to gain a bonus to your AC against that attack or to that saving throw. The bonus is equal to your Intelligence modifier (minimum of 1).",
"You can use this feature a number of times equal to your Intelligence modifier (minimum of 1). You regain all expended uses at the end of a long rest."
]
},
{
"name": "Fighting Style",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 2,
"entries": [
"At 2nd level, you adopt a particular 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",
"entries": [
{
"type": "entries",
"name": "Archery",
"entries": [
"You gain a +2 bonus to attack rolls you make with ranged weapons."
]
},
{
"type": "entries",
"name": "Defense",
"entries": [
"While you are wearing armor, you gain a +1 bonus to AC."
]
},
{
"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": "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": "Spellcasting",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 2,
"entries": [
"By the time you reach 2nd level, your dedication to the study of the arcane to augment your martial skill gives you the ability to cast spells.",
{
"type": "entries",
"name": "Cantrips",
"entries": [
"At 2nd level, you know two cantrips of your choice from the runeblade spell list. You learn additional runeblade cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Runeblade table."
]
},
{
"type": "entries",
"name": "Spell Slots",
"entries": [
"The Runeblade table shows how many spell slots you have to cast your runeblade 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.",
"For example, if you know the 1st-level spell {@spell thunderous smite} and have a 1st-level and a 2nd-level spell slot available, you can cast {@spell thunderous smite} using either slot."
]
},
{
"type": "entries",
"name": "Spell Known of 1st-Level and Higher",
"entries": [
"You know two 1st-level spells of your choice from the runeblade spell list.",
"The Spells Known column of the Runeblade table shows when you learn more runeblade spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th 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 runeblade spells you know and replace it with another spell from the runeblade spell list, which also must be of a level for which you have spell slots."
]
},
{
"type": "entries",
"name": "Spellcasting Ability",
"entries": [
"Intelligence is your spellcasting ability for your runeblade spells, since you learn magic through study and practice. 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 runeblade spell you cast and when making an attack roll with one",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"int"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"int"
]
}
]
},
{
"type": "entries",
"name": "Spellcasting Focus",
"entries": [
"You can use your rune weapon as a spellcasting focus for your runeblade spells."
]
}
]
},
{
"name": "Arcane Strike",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 2,
"entries": [
"Starting at 2nd level, when you hit a creature with a weapon attack using your rune weapon, you can expend one spell slot to deal force damage to the target, in addition to the weapon's damage. The extra damage is {@dice 2d6} for a 1st-level spell slot, plus {@dice 1d6} for each spell level higher than 1st, to a maximum of {@dice 6d6}."
]
},
{
"name": "Runeblade Archetype",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 3,
"entries": [
"At 3rd level, you choose to emulate the ideals and training of a runeblade archetype from the list of available archetypes. Your choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include archetype spells.",
{
"name": "Archetype Spells",
"entries": [
"Each archetype has a list of associated spells. You learn these spells at the levels specified in the archetype description. The spells count as runeblade spells for you, but they don't count against the number of runeblade spells you know."
]
}
]
},
{
"name": "Ability Score Improvement",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "Glyph of Power",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 6,
"entries": [
"Starting at 6th level, when you attack using your rune weapon, it gains a +1 bonus to its attack and damage rolls, unless it already has a bonus to those rolls. The bonus increases to +2 when you reach 10th level in this class, and to +3 at 17th level."
]
},
{
"name": "Runeblade Archetype Feature",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 7,
"entries": [
"At 7th level, you gain a feature granted to you by your Runeblade Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "Glyph of Mist",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 10,
"entries": [
"Starting at 10th level, when you take the Attack action, you can teleport up to 10 feet before each attack to an unoccupied space you can see if you're holding your rune weapon."
]
},
{
"name": "Sword & Sorcery",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 11,
"entries": [
"Starting at 11th level, once on each of your turns when you take the Attack action, you can forego one of your attacks to instead cast a spell with a casting time of one action."
]
},
{
"name": "Ability Score Improvement",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "Glyph of Focus",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 14,
"entries": [
"Starting at 14th level, while holding your rune weapon, you can't be disarmed, and your concentration can't be broken as a result of taking damage."
]
},
{
"name": "Runeblade Archetype Feature",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 15,
"entries": [
"At 15th level, you gain a feature granted to you by your Runeblade Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "Glyph of Mastery",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 18,
"entries": [
"Starting at 18th level, you can use your Glyph of Protection an unlimited number of times. Additionally, once per round, you can use your Arcane Strike without spending a spell slot, as if you spent a 1st-level spell slot."
]
},
{
"name": "Ability Score Improvement",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"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": "Runeblade Archetype Feature",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"level": 20,
"entries": [
"At 20th level, you gain a feature granted to you by your Runeblade Archetype."
]
}
],
"subclassFeature": [
{
"name": "Runic Knight",
"source": "TheRuneblade",
"className": "Runeblade",
"classSource": "TheRuneblade",
"subclassShortName": "Runic Knight",
"subclassSource": "TheRuneblade",
"level": 3,
"entries": [
"The origins of this archetype can be traced back to ancient giant warrior tribes, but are now associated with goliaths, who have inherited the tradition, and to dwarves who made it their own. The Runic Knight are stalwart swordsmen who learn magical glyphs to complement their martial abilities. Many go on treacherous expeditions to ruins deep underground to uncover ancient glyphs left by lost civilizations, bringing back knowledge to strengthen themselves and their homeland.",
{
"type": "refSubclassFeature",
"subclassFeature": "Archetype Spells|Runeblade|TheRuneblade|Runic Knight|TheRuneblade|3"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Flash of Steel|Runeblade|TheRuneblade|Runic Knight|TheRuneblade|3"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Rune Gear|Runeblade|TheRuneblade|Runic Knight|TheRuneblade|3"
}
]
},
{
"type": "entries",
"name": "Archetype Spells",
"entries": [
"You gain archetype spells at the runeblade levels listed.",
{
"type": "table",
"caption": "Runic Knight Spells",
"colLabels": [
"Runeblade Level",
"Spells"
],
"colStyles": [
"col-3 text-center",
"col-9"
],
"rows": [
[
"3rd",
"{@spell divine favor}"
],
[
"5th",
"{@spell enhance ability}"
],
[
"9th",
"{@spell glyph of warding}"
],
[
"13th",
"{@spell death ward}"
],
[
"17th",
"{@spell holy weapon|xge}"
]
]
}
],