forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Casteliad; Shadow Assassin.json
1546 lines (1546 loc) · 54 KB
/
Casteliad; Shadow Assassin.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": "Casteliad",
"abbreviation": "Cld",
"full": "Casteliad Homebrew",
"authors": [
"Casteliad"
],
"version": "1.0.0",
"url": "https://github.com/TheGiddyLimit/homebrew",
"targetSchema": "1.0.0"
}
],
"dateAdded": 1571000711,
"dateLastModified": 1571000711
},
"class": [
{
"name": "Monk (MultiClass)",
"source": "Casteliad",
"hd": {
"number": 1,
"faces": 8
},
"proficiency": [
"dex",
"wis"
],
"classTableGroups": [
{
"colLabels": [
"Martial Arts",
"Ki Points",
"Unarmored Movement",
"{@filter Spells Known|spells|class=ranger}",
"Spell Slot"
],
"rows": [
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
0,
{
"type": "bonusSpeed",
"value": 0
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
2,
{
"type": "bonusSpeed",
"value": 10
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
3,
{
"type": "bonusSpeed",
"value": 10
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
4,
{
"type": "bonusSpeed",
"value": 10
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
5,
{
"type": "bonusSpeed",
"value": 10
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
6,
{
"type": "bonusSpeed",
"value": 15
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
6,
{
"type": "bonusSpeed",
"value": 15
},
0,
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
6,
{
"type": "bonusSpeed",
"value": 15
},
2,
2
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
6,
{
"type": "bonusSpeed",
"value": 15
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
7,
{
"type": "bonusSpeed",
"value": 20
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
8,
{
"type": "bonusSpeed",
"value": 20
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
9,
{
"type": "bonusSpeed",
"value": 20
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
10,
{
"type": "bonusSpeed",
"value": 20
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
11,
{
"type": "bonusSpeed",
"value": 25
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
12,
{
"type": "bonusSpeed",
"value": 25
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
13,
{
"type": "bonusSpeed",
"value": 25
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
14,
{
"type": "bonusSpeed",
"value": 25
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
15,
{
"type": "bonusSpeed",
"value": 30
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
16,
{
"type": "bonusSpeed",
"value": 30
},
3,
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
17,
{
"type": "bonusSpeed",
"value": 30
},
3,
3
]
]
}
],
"startingProficiencies": {
"weapons": [
"simple",
"{@item shortsword|phb|shortswords}"
],
"tools": [
"any one type of artisan's tools or any one musical instrument of your choice"
],
"skills": [
{
"choose": {
"from": [
"acrobatics",
"athletics",
"history",
"insight",
"religion",
"stealth"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@item shortsword|phb} or (b) any {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}",
"(a) a {@item dungeoneer's pack|phb} or (b) an {@item explorer's pack|phb}",
"10 {@item dart|phb|darts}"
],
"goldAlternative": "{@dice 5d4|5d4|Starting Gold}",
"defaultData": [
{
"a": [
"shortsword|phb"
],
"b": [
{
"equipmentType": "weaponSimple"
}
]
},
{
"a": [
"dungeoneer's pack|phb"
],
"b": [
"explorer's pack|phb"
]
},
{
"_": [
{
"item": "dart|phb",
"quantity": 10
}
]
}
]
},
"multiclassing": {
"requirements": {
"dex": 13,
"wis": 13
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"skills": [
{
"choose": {
"from": [
"animal handling",
"athletics",
"insight",
"investigation",
"nature",
"perception",
"stealth",
"survival"
],
"count": 1
}
}
],
"weapons": [
"simple",
"martial"
]
}
},
"classFeatures": [
"Unarmored Defense|Monk (MultiClass)|Casteliad|1",
"Martial Arts|Monk (MultiClass)|Casteliad|1",
"Ki|Monk (MultiClass)|Casteliad|2",
"Unarmored Movement|Monk (MultiClass)|Casteliad|2",
"Deflect Missiles|Monk (MultiClass)|Casteliad|3",
{
"classFeature": "Monastic Tradition|Monk (MultiClass)|Casteliad|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Monk (MultiClass)|Casteliad|4",
"Slow Fall|Monk (MultiClass)|Casteliad|4",
"Extra Attack|Monk (MultiClass)|Casteliad|5",
"Stunning Strike|Monk (MultiClass)|Casteliad|5",
"Ki-Empowered Strikes|Monk (MultiClass)|Casteliad|6",
{
"classFeature": "Monastic Tradition feature|Monk (MultiClass)|Casteliad|6",
"gainSubclassFeature": true
},
"Favored Enemy|Monk (MultiClass)|Casteliad|7",
"Natural Explorer|Monk (MultiClass)|Casteliad|7",
"Spellcasting|Monk (MultiClass)|Casteliad|8",
"Fighting Style|Monk (MultiClass)|Casteliad|8",
"Primeval Awareness|Monk (MultiClass)|Casteliad|9",
{
"classFeature": "Ranger Conclave|Monk (MultiClass)|Casteliad|9",
"gainSubclassFeature": true
},
"Evasion|Monk (MultiClass)|Casteliad|10",
"Stillness of Mind|Monk (MultiClass)|Casteliad|10",
"Ability Score Improvement|Monk (MultiClass)|Casteliad|11",
"Unarmored Movement improvement|Monk (MultiClass)|Casteliad|12",
"Purity of Body|Monk (MultiClass)|Casteliad|13",
{
"classFeature": "Monastic Tradition feature|Monk (MultiClass)|Casteliad|14",
"gainSubclassFeature": true
},
"Ability Score Improvement|Monk (MultiClass)|Casteliad|15",
"Tongue of the Sun and Moon|Monk (MultiClass)|Casteliad|16",
"Diamond Soul|Monk (MultiClass)|Casteliad|17",
"Timeless Body|Monk (MultiClass)|Casteliad|18",
"Ability Score Improvement|Monk (MultiClass)|Casteliad|19",
{
"classFeature": "Monastic Tradition feature|Monk (MultiClass)|Casteliad|20",
"gainSubclassFeature": true
}
],
"subclassTitle": "Monastic Tradition",
"fluff": [
{
"entries": [
"Her fists a blur as they deflect an incoming hail of arrows, a half-elf springs over a barricade and throws herself into the massed ranks of hobgoblins on the other side. She whirls among them, knocking their blows aside and sending them reeling, until at last she stands alone.",
"Taking a deep breath, a human covered in tattoos settles into a battle stance. As the first charging orcs reach him, he exhales and a blast of fire roars from his mouth, engulfing his foes.",
"Moving with the silence of the night, a black-clad halfling steps into a shadow beneath an arch and emerges from another inky shadow on a balcony a stone's throw away. She slides her blade free of its cloth-wrapped scabbard and peers through the open window at the tyrant prince, so vulnerable in the grip of sleep.",
"Whatever their discipline, monks are united in their ability to magically harness the energy that flows in their bodies. Whether channeled as a striking display of combat prowess or a subtler focus of defensive ability and speed, this energy infuses all that a monk does.",
{
"type": "entries",
"name": "The Magic of Ki",
"entries": [
"Monks make careful study of a magical energy that most monastic traditions call ki. This energy is an element of the magic that suffuses the multiverse\u2014specifically, the element that flows through living bodies. Monks harness this power within themselves to create magical effects and exceed their bodies' physical capabilities, and some of their special attacks can hinder the flow of ki in their opponents. Using this energy, monks channel uncanny speed and strength into their unarmed strikes. As they gain experience, their martial training and their mastery of ki gives them more power over their bodies and the bodies of their foes."
]
},
{
"type": "entries",
"name": "Training and Asceticism",
"entries": [
"Small walled cloisters dot the landscapes of the worlds of D&D, tiny refuges from the flow of ordinary life, where time seems to stand still. The monks who live there seek personal perfection through contemplation and rigorous training. Many entered the monastery as children, sent to live there when their parents died, when food couldn't be found to support them, or in return for some kindness that the monks had performed for their families.",
"Some monks live entirely apart from the surrounding population, secluded from anything that might impede their spiritual progress. Others are sworn to isolation, emerging only to serve as spies or assassins at the command of their leader, a noble patron, or some other mortal or divine power.",
"The majority of monks don't shun their neighbors, making frequent visits to nearby towns or villages and exchanging their service for food and other goods. As versatile warriors, monks often end up protecting their neighbors from monsters or tyrants.",
"For a monk, becoming an adventurer means leaving a structured, communal lifestyle to become a wanderer. This can be a harsh transition, and monks don't undertake it lightly. Those who leave their cloisters take their work seriously, approaching their adventures as personal tests of their physical and spiritual growth. As a rule, monks care little for material wealth and are driven by a desire to accomplish a greater mission than merely slaying monsters and plundering their treasure."
]
},
{
"type": "entries",
"name": "Creating a Monk",
"entries": [
"As you make your monk character, think about your connection to the monastery where you learned your skills and spent your formative years. Were you an orphan or a child left on the monastery's threshold? Did your parents promise you to the monastery in gratitude for a service performed by the monks? Did you enter this secluded life to hide from a crime you committed? Or did you choose the monastic life for yourself?",
"Consider why you left. Did the head of your monastery choose you for a particularly important mission beyond the cloister? Perhaps you were cast out because of some violation of the community's rules. Did you dread leaving, or were you happy to go? Is there something you hope to accomplish outside the monastery? Are you eager to return to your home?",
"As a result of the structured life of a monastic community and the discipline required to harness ki, monks are almost always lawful in alignment.",
{
"type": "entries",
"name": "Quick Build",
"entries": [
"You can make a monk quickly by following these suggestions. First, make Dexterity your highest ability score, followed by Wisdom. Second, choose the {@background hermit} background."
]
}
]
}
],
"source": "Casteliad",
"name": "Monk (MultiClass)",
"type": "section"
},
{
"entries": [
{
"type": "quote",
"entries": [
"Do not mistake my silence for acceptance of your villainy. While you blustered and threatened, I've planned four different ways to snap your neck with my bare hands."
],
"by": "Ember, grand master of flowers"
},
"Monks walk a path of contradiction. They study their art as a wizard does, and like a wizard, they wear no armor and typically eschew weapons. Yet they are deadly combatants, their abilities on a par with those of a raging barbarian or a superbly trained fighter. Monks embrace this seeming contradiction, for it speaks to the core of all monastic study. By coming to know oneself completely, one learns much of the wider world.",
"A monk's focus on inner mastery leads many such individuals to become detached from society, more concerned with their personal experience than with happenings elsewhere. Adventuring monks are a rare breed of an already rare type of character, taking their quest for perfection beyond the walls of the monastery into the world at large.",
"Playing a monk character offers many intriguing opportunities to try something different. To distinguish your monk character even further, consider the options in the sections that follow.",
{
"type": "entries",
"name": "Monastery",
"entries": [
"A monk studies in a monastery in preparation for a life of asceticism. Most of those who enter a monastery make it their home for the rest of their lives, with the exception of adventurers and others who have reason to leave. For those individuals, a monastery might serve as a refuge between excursions to the world or as a source of support in times of need.",
"What sort of place was your monastery, and where is it located? Did attending it contribute to your experience in an unusual or distinctive way?",
{
"type": "table",
"caption": "Monastery",
"colLabels": [
"{@dice d6}",
"Monastery"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
{
"type": "cell",
"roll": {
"exact": 1
}
},
"Your monastery is carved out of a mountainside, where it looms over a treacherous pass."
],
[
{
"type": "cell",
"roll": {
"exact": 2
}
},
"Your monastery is high in the branches of an immense tree in the Feywild."
],
[
{
"type": "cell",
"roll": {
"exact": 3
}
},
"Your monastery was founded long ago by a cloud giant and is inside a cloud castle that can be reached only by flying."
],
[
{
"type": "cell",
"roll": {
"exact": 4
}
},
"Your monastery is built beside a volcanic system of hot springs, geysers, and sulfur pools. You regularly received visits from azer traders."
],
[
{
"type": "cell",
"roll": {
"exact": 5
}
},
"Your monastery was founded by gnomes and is an underground labyrinth of tunnels and rooms."
],
[
{
"type": "cell",
"roll": {
"exact": 6
}
},
"Your monastery was carved from an iceberg in the frozen reaches of the world."
]
]
}
]
},
{
"type": "entries",
"name": "Icon",
"entries": [
"Even in the monastic lifestyle, which eschews materialism and personal possessions, symbolism plays an important part in defining the identity of an order. Some monastic orders treat certain creatures with special regard, either because the creature is tied to the order's history or because it serves as an example of a quality the monks seek to emulate.",
"If your character's monastery had a special icon, you might wear a crude image of the creature somewhere inconspicuous on your clothing to serve as an identifying mark. Or perhaps your order's icon does not have a physical form but is expressed through a gesture or a posture that you adopt, and which other monks might know how to interpret.",
{
"type": "table",
"caption": "Icon",
"colLabels": [
"{@dice d6}",
"Icon"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
{
"type": "cell",
"roll": {
"exact": 1
}
},
"Monkey. Quick reflexes and the ability to travel through the treetops are two of the reasons why your order admires the monkey."
],
[
{
"type": "cell",
"roll": {
"exact": 2
}
},
"Dragon Turtle. The monks of your seaside monastery venerate the dragon turtle, reciting ancient prayers and offering garlands of flowers to honor this living spirit of the sea."
],
[
{
"type": "cell",
"roll": {
"exact": 3
}
},
"Ki-rin. Your monastery sees its main purpose as watching over and protecting the land in the manner of the ki-rin."
],
[
{
"type": "cell",
"roll": {
"exact": 4
}
},
"Owlbear. The monks of your monastery revere a family of owlbears and have coexisted with them for generations."
],
[
{
"type": "cell",
"roll": {
"exact": 5
}
},
"Hydra. Your order singles out the hydra for its ability to unleash several attacks simultaneously."
],
[
{
"type": "cell",
"roll": {
"exact": 6
}
},
"Dragon. A dragon once laired within your monastery. Its influence remains long after its departure."
]
]
}
]
},
{
"type": "entries",
"name": "Master",
"entries": [
"During your studies, you were likely under the tutelage of a master who imparted to you the precepts of the order. Your master was the one most responsible for shaping your understanding of the martial arts and your attitude toward the world. What sort of person was your master, and how did your relationship with your master affect you?",
{
"type": "table",
"caption": "Master",
"colLabels": [
"{@dice d6}",
"Master"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
{
"type": "cell",
"roll": {
"exact": 1
}
},
"Your master was a tyrant whom you had to defeat in single combat to complete your instruction."
],
[
{
"type": "cell",
"roll": {
"exact": 2
}
},
"Your master was kindly and taught you to pursue the cause of peace."
],
[
{
"type": "cell",
"roll": {
"exact": 3
}
},
"Your master was merciless in pushing you to your limits. You nearly lost an eye during one especially brutal practice session."
],
[
{
"type": "cell",
"roll": {
"exact": 4
}
},
"Your master seemed goodhearted while tutoring you, but betrayed your monastery in the end."
],
[
{
"type": "cell",
"roll": {
"exact": 5
}
},
"Your master was cold and distant. You suspect that the two of you might be related."
],
[
{
"type": "cell",
"roll": {
"exact": 6
}
},
"Your master was kind and generous, never critical of your progress. Nevertheless, you feel you never fully lived up to the expectations placed on you."
]
]
}
]
}
],
"source": "Casteliad",
"type": "section"
}
],
"spellsKnownProgression": [
0,
0,
0,
0,
0,
0,
0,
2,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
]
}
],
"classFeature": [
{
"name": "Unarmored Defense",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 1,
"entries": [
"Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier."
]
},
{
"name": "Martial Arts",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 1,
"entries": [
"Your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property.",
"You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield.",
{
"type": "list",
"items": [
"You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.",
"You can roll a {@dice d4} in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.",
"When you use the {@action Attack} action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the {@action Attack} action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn."
]
},
"Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama)."
]
},
{
"name": "Ki",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 2,
"entries": [
"Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.",
"You can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.",
"When you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.",
"Some of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:",
{
"type": "abilityDc",
"name": "Ki",
"attributes": [
"wis"
]
},
{
"type": "entries",
"name": "Flurry of Blows",
"entries": [
"Immediately after you take the {@action Attack} action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action."
]
},
{
"type": "entries",
"name": "Patient Defense",
"entries": [
"You can spend 1 ki point to take the {@action Dodge} action as a bonus action on your turn."
]
},
{
"type": "entries",
"name": "Step of the Wind",
"entries": [
"You can spend 1 ki point to take the {@action Disengage} or {@action Dash} action as a bonus action on your turn, and your jump distance is doubled for the turn."
]
}
]
},
{
"name": "Unarmored Movement",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 2,
"entries": [
"Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.",
"At 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move."
]
},
{
"name": "Deflect Missiles",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 3,
"entries": [
"Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by {@dice 1d10} + your Dexterity modifier + your monk level.",
"If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack (range 20/60 feet) with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack."
]
},
{
"name": "Monastic Tradition",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 3,
"entries": [
"When you reach 3rd level, you commit yourself to a monastic tradition, chosen from the list of available traditions. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level."
]
},
{
"name": "Ability Score Improvement",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"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": "Slow Fall",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 4,
"entries": [
"Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level."
]
},
{
"name": "Extra Attack",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"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": "Stunning Strike",
"source": "Casteliad",
"className": "Monk (MultiClass)",
"classSource": "Casteliad",
"level": 5,