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/black_bear.json | |
download | dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.gz dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.tar.bz2 dmtool-2ab51e507d620c4479e07ca0ec47d22c8c66bc90.zip |
Initial commit
Diffstat (limited to 'parser/monsters/black_bear.json')
-rw-r--r-- | parser/monsters/black_bear.json | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/parser/monsters/black_bear.json b/parser/monsters/black_bear.json new file mode 100644 index 0000000..06ba7ab --- /dev/null +++ b/parser/monsters/black_bear.json @@ -0,0 +1,95 @@ +{ + "speed": "40 ft., climb 30 ft.", + "saves": [], + "d_resistances": [], + "d_vulnerabilities": [], + "d_immunities": [], + "c_immunities": [], + "senses": [], + "langs": "--", + "skills": { + "Perception": 1 + }, + "hit_die_count": 3, + "hit_die_sides": 8, + "name": "Black bear", + "type": "beast", + "cr": 0.5, + "size": "Medium", + "alignment": "unaligned", + "stats": { + "str": 15, + "dex": 10, + "con": 14, + "int": 2, + "wis": 12, + "cha": 7 + }, + "inventory": [], + "natural_armor": [ + { + "name": "natural", + "bonus": 11 + } + ], + "description": "", + "features": [ + { + "name": "keen smell", + "text": "The bear has advantage on Wisdom (Perception) checks that rely on smell.", + "type": "feature" + }, + { + "name": "multiattack", + "text": "The bear makes two attacks: one with its bite and one with its claws.", + "type": "action" + }, + { + "name": "bite", + "text": "_Melee Weapon Attack:_ +3 to hit, reach 5 ft., one target. _Hit:_ 5 (1d6 + 2) piercing damage.", + "type": "action", + "attack": { + "name": "bite", + "cost": 0, + "damage": { + "dmg_type": "piercing", + "dmg_die_count": 1, + "dmg_die_sides": 6 + }, + "weight": 0.0, + "range": [ + 0, + 0 + ], + "reach": 5, + "properties": [], + "type": "unknown", + "text": "_Melee Weapon Attack:_ +3 to hit, reach 5 ft., one target. _Hit:_ 5 (1d6 + 2) piercing damage." + } + }, + { + "name": "claws", + "text": "_Melee Weapon Attack:_ +3 to hit, reach 5 ft., one target. _Hit:_ 7 (2d4 + 2) slashing damage.", + "type": "action", + "attack": { + "name": "claws", + "cost": 0, + "damage": { + "dmg_type": "slashing", + "dmg_die_count": 2, + "dmg_die_sides": 4 + }, + "weight": 0.0, + "range": [ + 0, + 0 + ], + "reach": 5, + "properties": [], + "type": "unknown", + "text": "_Melee Weapon Attack:_ +3 to hit, reach 5 ft., one target. _Hit:_ 7 (2d4 + 2) slashing damage." + } + } + ], + "prof": 2 +}
\ No newline at end of file |