forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
badooga; Badooga's Warlord.json
1369 lines (1369 loc) · 49.5 KB
/
badooga; Badooga's Warlord.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": "B:W",
"abbreviation": "B:W",
"full": "Badooga's Warlord",
"version": "1.0.0",
"url": "https://www.gmbinder.com/share/-M6rRBBBIFlQQuYSdWgM",
"authors": [
"badooga"
],
"convertedBy": [
"badooga"
],
"color": "aa40b4"
}
],
"dateAdded": 1621168316,
"dateLastModified": 1621168316
},
"class": [
{
"name": "Warlord",
"source": "B:W",
"page": 1,
"hd": {
"number": 1,
"faces": 10
},
"proficiency": [
"str",
"con"
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"heavy",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"athletics",
"acrobatics",
"sleight of hand",
"stealth",
"arcana",
"history",
"investigation",
"nature",
"religion",
"animal handling",
"insight",
"medicine",
"perception",
"survival",
"deception",
"intimidation",
"performance",
"persuasion"
],
"count": 3
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) {@item chain mail|phb} or (b) {@item leather armor|phb}, {@item longbow|phb}, and {@item arrows (20)|phb|20 arrows}",
"(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) a {@item light crossbow|phb} and {@item crossbow bolts (20)|phb|20 bolts} or (b) two {@item handaxe|phb|handaxes}",
"(a) a {@item dungeoneer's pack|phb} or (b) an {@item explorer's pack|phb}"
],
"goldAlternative": "{@dice 5d4 × 10|5d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"chain mail|phb"
],
"b": [
"leather armor|phb",
"longbow|phb",
"arrows (20)|phb"
]
},
{
"a": [
{
"equipmentType": "weaponMartial"
},
"shield|phb"
],
"b": [
{
"equipmentType": "weaponMartial",
"quantity": 2
}
]
},
{
"a": [
"light crossbow|phb",
"crossbow bolts (20)|phb"
],
"b": [
{
"item": "handaxe|phb",
"quantity": 2
}
]
},
{
"a": [
"dungeoneer's pack|phb"
],
"b": [
"explorer's pack|phb"
]
}
]
},
"multiclassing": {
"requirements": {
"or": [
{
"int": 13,
"wis": 13,
"cha": 13
}
]
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"shields"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"athletics",
"acrobatics",
"sleight of hand",
"stealth",
"arcana",
"history",
"investigation",
"nature",
"religion",
"animal handling",
"insight",
"medicine",
"perception",
"survival",
"deception",
"intimidation",
"performance",
"persuasion"
],
"count": 1
}
}
]
}
},
"classFeatures": [
"Warlord's Favor|Warlord|B:W|1",
{
"classFeature": "Warlord Archetype|Warlord|B:W|1",
"gainSubclassFeature": true
},
"Commanding Presence|Warlord|B:W|2",
"Fighting Style|Warlord|B:W|2",
"Maneuver Versatility|Warlord|B:W|2|UAClassFeatureVariants",
"Martial Versatility|Warlord|B:W|2|UAClassFeatureVariants",
{
"classFeature": "Warlord Archetype feature|Warlord|B:W|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Warlord|B:W|4",
"Proficiency Versatility|Warlord|B:W|4|UAClassFeatureVariants",
"Martial Versatility|Warlord|B:W|4|B:W",
"Extra Attack|Warlord|B:W|5",
"Victory Surge|Warlord|B:W|5",
"Ability Score Improvement|Warlord|B:W|6",
"Proficiency Versatility|Warlord|B:W|6|UAClassFeatureVariants",
"Battle Ready|Warlord|B:W|7",
{
"classFeature": "Warlord Archetype feature|Warlord|B:W|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Warlord|B:W|8",
"Proficiency Versatility|Warlord|B:W|8|UAClassFeatureVariants",
"Lead by Example|Warlord|B:W|9",
"Leadership Expert|Warlord|B:W|9",
{
"classFeature": "Warlord Archetype feature|Warlord|B:W|10",
"gainSubclassFeature": true
},
"Banner of Command|Warlord|B:W|11",
"Mind of a Leader|Warlord|B:W|11",
"Ability Score Improvement|Warlord|B:W|12",
"Proficiency Versatility|Warlord|B:W|12|UAClassFeatureVariants",
"Lead by Example (2)|Warlord|B:W|13",
"Leadership Expert (2)|Warlord|B:W|13",
"Ability Score Improvement|Warlord|B:W|14",
"Proficiency Versatility|Warlord|B:W|14|UAClassFeatureVariants",
{
"classFeature": "Warlord Archetype feature|Warlord|B:W|15",
"gainSubclassFeature": true
},
"Ability Score Improvement|Warlord|B:W|16",
"Proficiency Versatility|Warlord|B:W|16|UAClassFeatureVariants",
"Lead by Example (No Reaction)|Warlord|B:W|17",
"Leadership Expert (3)|Warlord|B:W|17",
{
"classFeature": "Warlord Archetype feature|Warlord|B:W|18",
"gainSubclassFeature": true
},
"Ability Score Improvement|Warlord|B:W|19",
"Proficiency Versatility|Warlord|B:W|19|UAClassFeatureVariants",
"Perfect Front|Warlord|B:W|20"
],
"subclassTitle": "Warlord Archetype",
"fluff": [
{
"name": "Warlord",
"type": "section",
"entries": [
"The ironclad centaur and her allies are the only ones left standing after the kraken's devastating assault. Having calculated most possible courses of action, the centaur lets out a shout and charges forward. Using her spear to deflect as many tentacles as possible, the centaur draws the kraken's ire so that her allies can position themselves behind the kraken's weak spot. Only a moment after the centaur's signal, the kraken keels over in pain, its heart pierced with a perfectly timed barrage of arrows and steel.",
"Passing through a dense fog, a leather-bound shifter guides a party of adventurers through the swamps. Hearing cries of pain, the shifter approaches to find an injured man leaned against a tree. Noticing the arrow lodged in his shoulder, the shifter steadies their breath and draws their shortsword. Amidst the man's wincing and the rushing water of the nearby stream, the shifter hears the subtle twang of a shortbow being knocked. They let out a high pitched whistle, and the party immediately knows to take cover. When the party wizard stands up from their prone position, they find an arrow lodged in the tree next to where their head would have been.",
"Having fought for days on end, the leonin's breastplate is all but shattered. She and her soldiers are weary, and are starting to be beaten back by the hydra's relentless attacks. But the leonin refuses to accept defeat. Letting out a mighty roar, the leonin's overwhelming presence causes the hydra to recoil for a brief window of time. In this time, the leonin delivers a few short sentences that inspire hope and resolve in the hearts of her comrades. By the time the hydra shakes off the effect, it finds that the soldiers that stand before it have become even stronger than they were before the battle began.",
"Warlords are accomplished and competent battle leaders. They stand on the front line issuing commands and bolstering their allies while leading the battle with weapon in hand. Whether through tactical wit, sharp instincts, or unwavering courage, a warlord knows how to work with a team to win a fight.",
{
"type": "entries",
"name": "Combat Leaders",
"entries": [
"While many warlords choose to take command of an army or some other group of combatants, a warlord leadership abilities don't require them to be in charge of anyone. The battlefield medic turned expert archer, the cowardly farmer with an uncanny intuition and sense of danger, and the soft spoken knight with a heart of gold are all examples of warlords that work with their party, rather than making the party work for them."
]
},
{
"type": "entries",
"name": "Skilled Warriors",
"entries": [
"The distinction between a normal general and a warlord is that a warlord will fight alongside their allies, rather than staying out of combat and directing affairs from behind the scenes. Warlords train for years to learn the skills of combat, mastering a variety of weapons and armor. It is the use of these martial skills on the front lines that allow their leadership to be more effective than a normal general could ever be."
]
},
{
"type": "entries",
"name": "Creating a Warlord",
"entries": [
"As you create your warlord character, consider that your ability to lead others to victory is a direct result of your history. You could be a minor warchief looking to make a name for yourself, a pious knight commander on leave from your militant order, a youthful noble eager to apply years of training to life outside the castle walls, a calculating mercenary captain, or a courageous marshal of the borderlands who fights to protect the frontier. Regardless of your background, you are a skillful warrior with an uncanny knack for leadership.",
{
"type": "entries",
"name": "Quick Build",
"entries": [
"You can make a warlord quickly by following these suggestions. First, make Strength or Dexterity your highest ability score, depending on whether you want to focus on melee weapons or on archery (or finesse weapons). Your next-highest score should be Intelligence, Wisdom, or Charisma, depending on the Warlord Archetype you want to choose. Second, choose the {@background soldier} background."
]
}
]
}
],
"source": "B:W",
"page": 1
}
]
}
],
"classFeature": [
{
"name": "Warlord Archetype",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 1,
"entries": [
"{@i 1st-level warlord feature}",
"You take on an archetype that you strive to emulate in your leadership style. Choose Knight Commander, Pragmatist, or Tactician, all detailed at the end of the class description. The archetype you choose grants you features at 1st level and again at 3rd, 7th, 10th, 15th, and 18th level."
]
},
{
"name": "Warlord's Favor",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 1,
"entries": [
"{@i 1st-level warlord feature}",
"As a bonus action, you can call out to an ally within 60 feet of you and offer words of inspiration, warning, or tactical guidance. If the target can hear and understand you, it regains hit points equal to your leadership ability modifier + your warlord level (minimum of 1). An ally that is unconscious at 0 hit points can also benefit from this feature if it would be able to hear you while conscious.",
"You can use this feature a number of times equal to your leadership ability modifier (a minimum of once), as defined below. You regain any expended uses when you finish a long rest.",
{
"name": "Leadership Ability",
"type": "entries",
"entries": [
"Your leadership ability is listed in the description of your Warlord Archetype. You primarily use this ability to calculate the uses and effects of your Warlord's Favor, but some of your other warlord features might reference it as well."
]
}
]
},
{
"name": "Commanding Presence",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 2,
"entries": [
"{@i 2nd-level warlord feature}",
"Allies within 10 feet of you that can see or hear you gain a bonus to weapon damage rolls equal to your leadership ability modifier (minimum of +1) made against targets you can see. This ability doesn't function while you are {@condition incapacitated}.",
"The range of this ability increases by 5 feet whenever you gain a level in this class."
]
},
{
"name": "Fighting Style",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 2,
"entries": [
"You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take the same Fighting Style option more than once, even if you get to choose again.",
{
"type": "options",
"count": 1,
"entries": [
{
"type": "refOptionalfeature",
"optionalfeature": "Archery"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Close Quarters Shooter|UALightDarkUnderdark"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Defense"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Dueling"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Great Weapon Fighting"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Mariner|UAWaterborneAdventures"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Protection"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Tunnel Fighter|UALightDarkUnderdark"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Two-Weapon Fighting"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Superior Technique|UAClassFeatureVariants"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Blind Fighting|UAClassFeatureVariants"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Interception|UAClassFeatureVariants"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Thrown Weapon Fighting|UAClassFeatureVariants"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Unarmed Fighting|UAClassFeatureVariants"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Blind Fighting|TCE"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Interception|TCE"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Superior Technique|TCE"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Thrown Weapon Fighting|TCE"
},
{
"type": "refOptionalfeature",
"optionalfeature": "Unarmed Fighting|TCE"
}
]
}
]
},
{
"name": "Maneuver Versatility",
"source": "UAClassFeatureVariants",
"page": 5,
"className": "Warlord",
"classSource": "B:W",
"level": 2,
"isClassFeatureVariant": true,
"entries": [
"{@i 2nd-level {@variantrule optional class features|tce|optional feature} (enhances Maneuvers)}",
"If you know any maneuvers from the fighter's Battle Master archetype, you can replace one maneuver you know with a different maneuver whenever you finish a long rest. This change reflects your physical and mental preparation for the day ahead."
]
},
{
"name": "Martial Versatility",
"source": "UAClassFeatureVariants",
"page": 12,
"className": "Warlord",
"classSource": "B:W",
"level": 2,
"isClassFeatureVariant": true,
"entries": [
"{@i 2nd-level {@variantrule optional class features|tce|optional feature} (enhances Fighting Style)}",
"Whenever you gain a level in this class, you can replace a fighting style you know with another style available to your class. This change represents a shift of focus in your martial training and practice, causing you to lose the benefits of one style and gain the benefits of another style."
]
},
{
"name": "Warlord Archetype feature",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 3,
"entries": [
"At 3rd level, you gain a feature granted by your Warlord Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 4,
"entries": [
"{@i 4th-level and higher warlord feature}",
"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": "Martial Versatility",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 4,
"isClassFeatureVariant": true,
"entries": [
"{@i 4th-level and higher warlord {@variantrule optional class features|tce|optional feature}}",
"Whenever you reach a level in this class that grants the Ability Score Improvement feature, you can do one of the following, as you shift the focus of your martial practice:",
{
"type": "list",
"items": [
"Replace a {@filter fighting style|optionalfeatures|feature type=FS:F} you know with another fighting style available to warlords.",
"If you know any {@filter maneuvers|optionalfeatures|feature type=MV:B} from the fighter's {@class fighter|phb|Battle Master|Battle Master|phb|2-0} archetype, you can replace one maneuver you know with a different maneuver."
]
}
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 4,
"isClassFeatureVariant": true,
"entries": [
"{@i 4th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Extra Attack",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 5,
"entries": [
"{@i 5th-level warlord feature}",
"You can attack twice, instead of once, whenever you take the {@action Attack} action on your turn."
]
},
{
"name": "Victory Surge",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 5,
"entries": [
"{@i 5th-level warlord feature}",
"You regain all of your expended uses of Warlord's Favor when you finish a short or long rest.",
"Additionally, you can target yourself with your Warlord's Favor feature, but doing so doesn't grant you any benefits from the 1st-level feature of your Warlord Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 6,
"entries": [
"When you reach 6th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 6,
"isClassFeatureVariant": true,
"entries": [
"{@i 6th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Battle Ready",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 7,
"entries": [
"{@i 7th-level warlord feature}",
"Your combat experience has granted you an edge on initiative rolls. When you roll initiative, you can grant yourself and any number of creatures of your choice within range of your Commanding Presence a bonus to the roll equal to your leadership ability modifier (minimum of +1). This feature doesn't function while you are incapacitated."
]
},
{
"name": "Warlord Archetype feature",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 7,
"entries": [
"At 7th level, you gain a feature granted by your Warlord Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 8,
"entries": [
"When you reach 8th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 8,
"isClassFeatureVariant": true,
"entries": [
"{@i 8th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Lead by Example",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 9,
"entries": [
"{@i 9th-level warlord feature}",
"When you make a weapon attack, you can also choose one ally that is in range of your Commanding Presence. If the target can see or hear you, it can immediately use its reaction to make one weapon attack.",
"Once you use this feature, you can't use it again until you finish a short or long rest.",
"Starting at 13th level, you can target two allies with this feature, rather than one.",
"Starting at 17th level, making an attack granted by this feature doesn't require an ally to expend their reaction."
]
},
{
"name": "Lead by Example (2)",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 13,
"entries": [
"Starting at 13th level, you can target two allies with your Lead by Example feature, rather than one."
]
},
{
"name": "Lead by Example (No Reaction)",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 17,
"entries": [
"Starting at 17th level, making an attack granted by your Lead by Example feature doesn't require an ally to expend their reaction."
]
},
{
"name": "Warlord Archetype feature",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 10,
"entries": [
"At 10th level, you gain a feature granted by your Warlord Archetype."
]
},
{
"name": "Banner of Command",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"level": 11,
"entries": [
"{@i 11th-level warlord feature}",
"You also benefit from the damage bonus of your Commanding Presence feature. Additionally, when an ally makes an attack that benefits from your Commanding Presence, that ally can roll a {@dice d4} and add the number rolled to the attack roll."
]
},
{
"name": "Mind of a Leader",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"level": 11,
"entries": [
"{@i 11th-level warlord feature}",
"You gain proficiency in saving throws using your leadership ability."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 12,
"entries": [
"When you reach 12th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 12,
"isClassFeatureVariant": true,
"entries": [
"{@i 12th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Lead by Example (2)",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 1,
"entries": [
"You can target two allies with your Lead by Example feature, rather than one."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 72,
"className": "Warlord",
"classSource": "B:W",
"level": 14,
"entries": [
"When you reach 14th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 14,
"isClassFeatureVariant": true,
"entries": [
"{@i 14th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Warlord Archetype feature",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 15,
"entries": [
"At 15th level, you gain a feature granted by your Warlord Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 16,
"entries": [
"When you reach 16th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 16,
"isClassFeatureVariant": true,
"entries": [
"{@i 16th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Warlord Archetype feature",
"source": "B:W",
"page": 2,
"className": "Warlord",
"classSource": "B:W",
"level": 18,
"entries": [
"At 18th level, you gain a feature granted by your Warlord Archetype."
]
},
{
"name": "Ability Score Improvement",
"source": "B:W",
"page": 3,
"className": "Warlord",
"classSource": "B:W",
"level": 19,
"entries": [
"When you reach 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Proficiency Versatility",
"source": "UAClassFeatureVariants",
"page": 1,
"className": "Warlord",
"classSource": "B:W",
"level": 19,
"isClassFeatureVariant": true,
"entries": [
"{@i 19th-level {@variantrule optional class features|tce|optional feature} (enhances Ability Score Improvement)}",
"When you gain the Ability Score Improvement feature from your class, you can also replace one of your skill proficiencies with a skill proficiency offered by your class at 1st level (the proficiency you replace needn't be from the class).",
"This change represents one of your skills atrophying as you focus on a different skill."
]
},
{
"name": "Perfect Front",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"level": 20,
"entries": [
"{@i 20th-level warlord feature}",
"You have mastered the use of your Warlord's Favor. When you use your Warlord's Favor feature, you can choose to target up to five allies within range, rather than just one.",
"Once you use this ability, you can't use it again until you finish a short or long rest."
]
},
{
"name": "Leadership Expert",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 9,
"isClassFeatureVariant": true,
"entries": [
"{@i 9th-level and higher warlord {@variantrule optional class features|tce|optional feature}}",
"Your experiences as a warlord have improved your proficiency in certain leadership activities. Choose one of the following benefits, and then choose another one at 13th and 17th level.",
{
"type": "refClassFeature",
"classFeature": "Astute Leader|Warlord|B:W|9|B:W"
},
{
"type": "refClassFeature",
"classFeature": "Press Onwards|Warlord|B:W|9|B:W"
},
{
"type": "refClassFeature",
"classFeature": "Skill Training|Warlord|B:W|9|B:W"
}
]
},
{
"name": "Astute Leader",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 9,
"isClassFeatureVariant": true,
"entries": [
"You can add half your proficiency bonus (round up) to any Intelligence, Wisdom, or Charisma check you make that doesn't already use your proficiency bonus.",
"You can also speak, read, and write two additional languages of your choice."
]
},
{
"name": "Press Onwards",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 9,
"isClassFeatureVariant": true,
"entries": [
"Your walking speed increases by 5, and you gain a climbing speed and a swimming speed equal to your walking speed.",
"In addition, whenever you finish a short rest, you can decrease the {@condition exhaustion} level, if any, of yourself or one ally of your choice by 1."
]
},
{
"name": "Skill Training",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 9,
"isClassFeatureVariant": true,
"entries": [
"Choose one skill. You gain proficiency in the chosen skill if you don't already have it, and you can add double your proficiency bonus to ability checks using that skill.",
"In addition, you gain proficiency in one tool of your choice."
]
},
{
"name": "Leadership Expert (2)",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 13,
"isClassFeatureVariant": true,
"entries": [
"At 13th level, you can choose a second benefit from the Leadership Expert feature."
]
},
{
"name": "Leadership Expert (3)",
"source": "B:W",
"page": 6,
"className": "Warlord",
"classSource": "B:W",
"level": 17,
"isClassFeatureVariant": true,
"entries": [
"At 17th level, you gain the remaining benefit from the Leadership Expert feature."
]
}
],
"subclassFeature": [
{
"name": "Knight Commander",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"subclassShortName": "Knight Commander",
"subclassSource": "B:W",
"level": 1,
"entries": [
"A knight commander leads by exhortation, encouragement, and inspiration. They prefer to lead through deeds, rather than just through words. As a knight commander spearheads an attack, their actions can awaken reserves of courage and conviction in allies that they never suspected they had.",
{
"type": "refSubclassFeature",
"subclassFeature": "Leadership Ability|Warlord|B:W|Knight Commander|B:W|1"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Inspiring Word|Warlord|B:W|Knight Commander|B:W|1"
}
]
},
{
"name": "Leadership Ability",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"subclassShortName": "Knight Commander",
"subclassSource": "B:W",
"level": 1,
"header": 1,
"entries": [
"Your leadership ability is Charisma, as you use your force of personality to help your allies find new surges of courage and endurance within themselves."
]
},
{
"name": "Inspiring Word",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"subclassShortName": "Knight Commander",
"subclassSource": "B:W",
"level": 1,
"header": 1,
"entries": [
"{@i 1st-level Knight Commander feature}",
"When you use your Warlord's Favor on an ally, that ally also gains temporary hit points equal to half the amount of normal hit points regained. These temporary hit points last for 1 minute."
]
},
{
"name": "Relentless Assault",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"subclassShortName": "Knight Commander",
"subclassSource": "B:W",
"level": 3,
"header": 2,
"entries": [
"{@i 3rd-level Knight Commander feature}",
"Your encouragement allow your allies to strike true. When an ally that is benefiting from your Commanding Presence misses with an attack, you can use your reaction to allow the ally to repeat the attack against the same target."
]
},
{
"name": "Tough as Nails",
"source": "B:W",
"page": 4,
"className": "Warlord",
"classSource": "B:W",
"subclassShortName": "Knight Commander",
"subclassSource": "B:W",
"level": 7,
"header": 2,
"entries": [
"{@i 7th-level Knight Commander feature}",
"Your combat experience has hardened your resolve and bolstered your ability to stay in the fight. You gain advantage on saving throws against being {@condition charmed}, {@condition exhaustion|phb|exhausted}, {@condition frightened}, and {@condition incapacitated}."
]
},
{
"name": "Break Their Nerve",
"source": "B:W",
"page": 4,