forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Devikyn; Dragoon revisited.json
2427 lines (2427 loc) · 63.1 KB
/
Devikyn; Dragoon revisited.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": "dragoon revisited",
"abbreviation": "DragR",
"full": "Dragoon, revisited",
"authors": [
"/u/Amellwind",
"/u/devikyn"
],
"convertedBy": [
"Modnar",
"Celery"
],
"version": "1.07",
"url": "https://drive.google.com/file/d/0Bz74Lu7ft9sycGpYbi02UHk5RmM/view",
"targetSchema": "1.0.0"
}
],
"dateAdded": 1545342498,
"dateLastModified": 1545342498
},
"class": [
{
"name": "Dragoon (revisited)",
"source": "dragoon revisited",
"fluff": [
{
"entries": [
"The Dragoon is an elite class of knight, trained specifically to fight the dragon threat. They are polearm-wielding knights that developed an aerial style of combat, so that they might better pierce the scaled hides of their mortal foes. Taking to the firmament as though it were an extension of the land, they descend upon the enemy with every ounce of their bodies behind the blow. A select few dragoons bind their souls to a dragon wyrmling egg, creating an unbreakable bond between each other. Others infuse their own blood with a dragon's, granting them ancient magic and abilities."
],
"name": "Dragoon (revisited)",
"type": "section"
}
],
"hd": {
"number": 1,
"faces": 10
},
"proficiency": [
"str",
"con"
],
"startingProficiencies": {
"armor": [
"light",
"medium"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"acrobatics",
"animal handling",
"investigation",
"intimidation",
"nature",
"survival"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) {@item halberd|phb} or (b) {@item lance|phb|leather}, or (c) {@item pike|phb}",
"(a) {@item leather armor|phb|leather} or (b) {@item chain shirt|phb}",
"(a) a {@item dungeoneer's pack|phb} or (b) an {@item explorer's pack|phb}",
"a {@item spear|phb} and three (3) {@item javelin|phb|javelins}"
],
"goldAlternative": "{@dice 4d4×10|4d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"halberd|phb"
],
"b": [
"lance|phb"
],
"c": [
"pike|phb"
]
},
{
"a": [
"leather armor|phb"
],
"b": [
"chain shirt|phb"
]
},
{
"a": [
"dungeoneer's pack|phb"
],
"b": [
"explorer's pack|phb"
]
},
{
"a {@item spear|phb} and three": []
}
]
},
"multiclassing": {
"requirements": {
"or": [
{
"str": 13,
"con": 13
}
]
}
},
"classFeatures": [
"Vault|Dragoon (revisited)|dragoon revisited|1",
"Polearm Specialist|Dragoon (revisited)|dragoon revisited|1",
"Draconic Knowledge|Dragoon (revisited)|dragoon revisited|2",
"Aerial Assault|Dragoon (revisited)|dragoon revisited|3",
{
"classFeature": "Dragoon Path|Dragoon (revisited)|dragoon revisited|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Dragoon (revisited)|dragoon revisited|4",
{
"classFeature": "Dargoon Feature|Dragoon (revisited)|dragoon revisited|5",
"gainSubclassFeature": true
},
"Ancient Circle|Dragoon (revisited)|dragoon revisited|6",
{
"classFeature": "Dargoon Path Feature|Dragoon (revisited)|dragoon revisited|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Dragoon (revisited)|dragoon revisited|8",
"Aerial Assult Improvement|Dragoon (revisited)|dragoon revisited|9",
"Vault Improvement|Dragoon (revisited)|dragoon revisited|10",
{
"classFeature": "Dargoon Path Feature|Dragoon (revisited)|dragoon revisited|11",
"gainSubclassFeature": true
},
"Ability Score Improvement|Dragoon (revisited)|dragoon revisited|12",
"Dragon Heart|Dragoon (revisited)|dragoon revisited|13",
"Aerial Assault Improvement|Dragoon (revisited)|dragoon revisited|14",
"Ancient Circle (two uses)|Dragoon (revisited)|dragoon revisited|15",
"Ability Score Improvement|Dragoon (revisited)|dragoon revisited|16",
{
"classFeature": "Dargoon Feature|Dragoon (revisited)|dragoon revisited|17",
"gainSubclassFeature": true
},
"Relentless Combatant|Dragoon (revisited)|dragoon revisited|18",
"Ability Score Improvement|Dragoon (revisited)|dragoon revisited|19",
"ONE WITH THE SKY|Dragoon (revisited)|dragoon revisited|20"
],
"subclassTitle": "Dragoon Path",
"classSpells": [
"Acid Splash",
"Chill Touch",
"Frostbite",
"Fire Bolt",
{
"name": "Green-flame Blade",
"source": "SCAG"
},
{
"name": "Lightning Lure",
"source": "SCAG"
},
"Minor Illusion",
"Poison Spray",
"Prestidigitation",
"Ray of Frost",
"Shocking Grasp",
"True Strike",
{
"name": "Absorb Elements",
"source": "SCAG"
},
"Burning Hands",
"Chromatic Orb",
"Disguise Self",
{
"name": "Dragon Hide",
"source": "dragoon revisited"
},
{
"name": "Earth Tremor",
"source": "XGE"
},
"Fog Cloud",
"Jump",
"Longstrider",
"Ray of Sickness",
"Sleep",
"Thunderwave",
"Aganazzar's Scorcher",
"Alter Self",
"Continual Flame",
"Darkness",
"Darkvision",
{
"name": "Dragon's Breath",
"source": "XGE"
},
"Flaming Sphere",
"Gust of Wind",
"Invisibility",
"Melf's Acid Arrow",
"See Invisibility",
"Suggestion",
"Shatter",
"Counterspell",
"Clairvoyance",
"Dispel Magic",
"Fear",
"Fireball",
"Fly",
"Lightning Bolt",
"Sleet Storm",
"Slow",
"Stinking Cloud",
"Arcane",
"Eye Blight",
{
"name": "Dragon Scales ",
"source": "dragoon revisited"
},
"Elemental Bane",
"Greater Invisibility",
"Hallucinatory Terrain",
"Ice Storm",
"Polymorph",
"Wall of Fire"
]
}
],
"spell": [
{
"name": "Dragon Hide",
"level": 1,
"school": "A",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": "a scale"
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 8
}
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action."
],
"miscTags": [
"MAC"
]
},
{
"name": "Dragon Scales",
"level": 4,
"school": "A",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "diamond dust worth 100 gp, which the spell consumes",
"cost": 10000,
"consume": true
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 1
},
"concentration": true
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage."
],
"page": 278,
"damageResist": [
"bludgeoning",
"piercing",
"slashing"
]
},
{
"name": "Ichor Fog",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 30
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "timed",
"duration": {
"type": "minute",
"amount": 1
}
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"A cloud of sand swirls about in a 20-foot-radius sphere centered on a point the dragoon can see within 60 feet of it. The cloud spreads around corners. Each creature in it must succeed on a Constitution saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
],
"page": 7
},
{
"name": "Lightning Arc",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"Lightning arcs from you, forming a 5-foot by 30-foot line originating from you. Each creature in the area must succeed on a Constitution saving throw or be stunned until the end of its next turn."
],
"page": 7
},
{
"name": "Dust Bowl",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 60
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"A cloud of sand swirls about in a 20-foot-radius sphere centered on a point the dragoon can see within 60 feet of it. The cloud spreads around corners. Each creature in it must succeed on a Constitution saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
],
"page": 8
},
{
"name": "Repulsion Breath",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "cone",
"distance": {
"type": "feet",
"amount": 15
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You exhale repelling energy in a 30-foot cone. Each creature or object in the area must make on a Strength saving throw. On a failed save, a target is pushed 30 feet in a straight line away from you. If a target pushed by this effect collides with another creature or object, both the target and the creature or object it collided with take {@damage 1d6} bludgeoning damage for every 10 feet the target was pushed."
],
"page": 8,
"miscTags": [
"FMV"
]
},
{
"name": "Deep Mud",
"level": 2,
"school": "T",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 60
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You choose a point on the ground that you can see within range. The ground in a 10-foot radius turns into 3-foot-deep mud. Each creature on the ground in that area when the mud appears must succeed on a Dexterity saving throw or sink into the mud and become restrained. A creature can take an action to attempt a Strength check, freeing itself or another creature within its reach and ending the restrained condition on a success. At the start of your next turn, the mud hardens, and the Strength check DC increases by 3."
],
"page": 8,
"miscTags": [
"SGT"
]
},
{
"name": "Weakening Breath",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "cone",
"distance": {
"type": "feet",
"amount": 15
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You exhale weakening gas in a 15-foot cone. Each creature in that area must succeed on a Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
],
"page": 8
},
{
"name": "Grasping Roots",
"level": 2,
"school": "C",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 60
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"Grasping roots and vines erupt in a 20-foot radius centered on a point on the ground that you can see within 60 feet of you. That area becomes difficult terrain, and each creature that enters the area for the first time on a turn or ends its turn there must succeed on a Strength saving throw or be restrained by the roots and vines. Any creature within 5 feet of an affected creature can use its action to make a Strength check, freeing it on a success."
],
"page": 8,
"miscTags": [
"SGT"
]
},
{
"name": "Tremors",
"level": 2,
"school": "C",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 30
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"A tremor shakes the area in a 30-foot radius around you. Each creature of your choice that is standing on the ground within the area must succeed on a Strength saving throw or be knocked prone."
],
"page": 8
},
{
"name": "Paralyzing Breath",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "cone",
"distance": {
"type": "feet",
"amount": 15
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You exhale a paralyzing gas in a 15-foot cone. Each creature in the area must succeed on a Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
],
"page": 8
},
{
"name": "Ice Prison",
"level": 2,
"school": "V",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true
},
"duration": [
{
"type": "timed",
"duration": {
"type": "minute",
"amount": 10
}
}
],
"classes": {
"fromSubclass": [
{
"class": {
"name": "Dragoon (revisited)",
"source": "dragoon revisited"
},
"subclass": {
"name": "Dragon's Blood",
"source": "dragoon revisited"
}
}
]
},
"source": "dragoon revisited",
"entries": [
"You create an opaque wall of ice or dome on a solid surface you can see within range. The wall can be up to 30 feet long, 30 feet high, and 1 foot thick. The dome can have a a radius of upto 10 feet, 10feet high, and 1 foot thick. When the wall appears, each creature within its area is pushed 5 feet out of the wall's space, appearing on whichever side of the wall it wants. Each 10-foot section of the wall has AC 5, 30 hit points, vulnerability to fire damage, and immunity to cold, necrotic, poison, and psychic damage. The wall disappears if you are incapacitated."
],
"page": 8,
"miscTags": [
"FMV",
"SGT"
]
}
],
"monster": [
{
"name": "Black Dragon Companion",
"size": "M",
"type": {
"type": "dragon",
"tags": [
"companion"
]
},
"source": "dragoon revisited",
"alignment": [
"C",
"E"
],
"ac": [
{
"ac": 13,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 17,
"formula": "3d8 + 3"
},
"speed": {
"walk": 30,
"fly": 45,
"swim": 30
},
"str": 14,
"dex": 14,
"con": 12,
"int": 8,
"wis": 9,
"cha": 10,
"immune": [
"acid"
],
"passive": 14,
"languages": [
"Draconic"
],
"cr": "1/2",
"page": 5,
"senses": [
"darkvision 60 ft.",
"blindsight 10 ft."
],
"trait": [
{
"name": "Amphibious",
"entries": [
"The dragon can breathe air and water."
]
}
],
"action": [
{
"name": "Bite",
"entries": [
"{@atk mw} {@hit 4} to hit, reach 5 ft., one target. Hit 6 ({@damage 1d8 + 2}) piercing damage."
]
}
],
"damageTags": [
"P"
],
"languageTags": [
"DR"
],
"traitTags": [
"Amphibious"
]
},
{
"name": "Blue Dragon Companion",
"size": "M",
"type": {
"type": "dragon",
"tags": [
"companion"
]
},
"source": "dragoon revisited",
"alignment": [
"L",
"E"
],
"ac": [
{
"ac": 13,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 17,
"formula": "3d8 + 3"
},
"speed": {
"walk": 30,
"fly": 45,
"burrow": 15
},
"str": 15,
"dex": 8,
"con": 13,
"int": 10,
"wis": 9,
"cha": 11,
"immune": [
"lightning"
],
"passive": 14,
"languages": [
"Draconic"
],
"cr": "1/2",
"page": 5,
"senses": [
"darkvision 60 ft.",
"blindsight 10 ft."
],
"action": [
{
"name": "Bite",
"entries": [
"{@atk mw} {@hit 4} to hit, reach 5 ft., one target. Hit 6 ({@damage 1d8 + 2}) piercing damage."
]
}
],
"damageTags": [
"P"
],
"languageTags": [
"DR"
]
},
{
"name": "Brass Dragon Companion",
"size": "M",
"type": {
"type": "dragon",
"tags": [
"companion"
]
},
"source": "dragoon revisited",
"alignment": [
"C",
"G"
],
"ac": [
{
"ac": 13,
"from": [
"natural armor"
]
}
],
"hp": {