diff options
author | Your Name <you@example.com> | 2021-04-13 15:14:34 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-04-13 15:14:34 -0400 |
commit | 2ab51e507d620c4479e07ca0ec47d22c8c66bc90 (patch) | |
tree | 90906ecb043c01034280c767b83a88eb6df6956f /parser/monsters/vrock.json | |
download | dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.gz dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.bz2 dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.zip |
Initial commit
Diffstat (limited to 'parser/monsters/vrock.json')
-rw-r--r-- | parser/monsters/vrock.json | 150 |
1 files changed, 150 insertions, 0 deletions
diff --git a/parser/monsters/vrock.json b/parser/monsters/vrock.json new file mode 100644 index 0000000..38ec4fb --- /dev/null +++ b/parser/monsters/vrock.json @@ -0,0 +1,150 @@ +{ + "speed": "40 ft., fly 60 ft.", + "saves": [ + "dex", + "wis", + "cha" + ], + "d_resistances": [ + { + "type": "cold", + "qualifiers": [] + }, + { + "type": "fire", + "qualifiers": [] + }, + { + "type": "lightning", + "qualifiers": [] + }, + { + "type": "bludgeoning", + "qualifiers": [ + "nonmagical" + ] + }, + { + "type": "piercing", + "qualifiers": [ + "nonmagical" + ] + }, + { + "type": "slashing", + "qualifiers": [ + "nonmagical" + ] + } + ], + "d_vulnerabilities": [], + "d_immunities": [ + { + "type": "poison", + "qualifiers": [] + } + ], + "c_immunities": [ + { + "type": "poisoned", + "qualifiers": [] + } + ], + "senses": [ + "darkvision 120 ft." + ], + "langs": "Abyssal, telepathy 120 ft.", + "skills": {}, + "hit_die_count": 11, + "hit_die_sides": 10, + "name": "Vrock", + "type": "fiend (demon)", + "cr": 6.0, + "size": "Large", + "alignment": "chaotic evil", + "stats": { + "str": 17, + "dex": 15, + "con": 18, + "int": 8, + "wis": 13, + "cha": 8 + }, + "inventory": [], + "natural_armor": [ + { + "name": "natural", + "bonus": 15 + } + ], + "description": "", + "features": [ + { + "name": "magic resistance", + "text": "The vrock has advantage on saving throws against spells and other magical effects.", + "type": "feature" + }, + { + "name": "multiattack", + "text": "The vrock makes two attacks: one with its beak and one with its talons.", + "type": "action" + }, + { + "name": "beak", + "text": "_Melee Weapon Attack:_ +6 to hit, reach 5 ft., one target. _Hit:_ 10 (2d6 + 3) piercing damage.", + "type": "action", + "attack": { + "name": "beak", + "cost": 0, + "damage": { + "dmg_type": "piercing", + "dmg_die_count": 2, + "dmg_die_sides": 6 + }, + "weight": 0.0, + "range": [ + 0, + 0 + ], + "reach": 5, + "properties": [], + "type": "unknown", + "text": "_Melee Weapon Attack:_ +6 to hit, reach 5 ft., one target. _Hit:_ 10 (2d6 + 3) piercing damage." + } + }, + { + "name": "talons", + "text": "_Melee Weapon Attack:_ +6 to hit, reach 5 ft., one target. _Hit:_ 14 (2d10 + 3) slashing damage.", + "type": "action", + "attack": { + "name": "talons", + "cost": 0, + "damage": { + "dmg_type": "slashing", + "dmg_die_count": 2, + "dmg_die_sides": 10 + }, + "weight": 0.0, + "range": [ + 0, + 0 + ], + "reach": 5, + "properties": [], + "type": "unknown", + "text": "_Melee Weapon Attack:_ +6 to hit, reach 5 ft., one target. _Hit:_ 14 (2d10 + 3) slashing damage." + } + }, + { + "name": "spores (recharge 6)", + "text": "A 15\u00ad\u2010foot\u00ad\u2010radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.", + "type": "action" + }, + { + "name": "stunning screech (1/day)", + "text": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.", + "type": "action" + } + ], + "prof": 3 +}
\ No newline at end of file |